¿Agregar un escudo UAC a un botón y conservar su imagen de fondo?

Uso de C # y .Net 4.0 en una aplicación winforms: ¿Es posible agregar el escudo UAC a un botón y conservar la imagen de fondo de los botones? ¿Cómo?

Esto es lo que estoy usando en este momento, pero elimina la imagen ...

[DllImport("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);

public static void UACToButton(Button button, bool add)
{
    const Int32 BCM_SETSHIELD = 0x160C;
    if (add)
        {
        // The button must have the flat style
        button.FlatStyle = FlatStyle.System;
        if (button.Text == "")
        // and it must have text to display the shield
            button.Text = " ";
            SendMessage(button.Handle, BCM_SETSHIELD, 0, 1);        
        }
        else
            SendMessage(button.Handle, BCM_SETSHIELD, 0, 0);    
}

¡Gracias!

Respuestas a la pregunta(2)

Su respuesta a la pregunta