9 references to LAYERED_WINDOW_ATTRIBUTES_FLAGS
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1797
if (!PInvoke.SetLayeredWindowAttributes(this, (COLORREF)0, OpacityAsByte,
LAYERED_WINDOW_ATTRIBUTES_FLAGS
.LWA_ALPHA))
System\Windows\Forms\Form.cs (4)
6147
result = PInvoke.SetLayeredWindowAttributes(this, (COLORREF)0, OpacityAsByte,
LAYERED_WINDOW_ATTRIBUTES_FLAGS
.LWA_ALPHA);
6152
result = PInvoke.SetLayeredWindowAttributes(this, (COLORREF)transparencyKey, 0,
LAYERED_WINDOW_ATTRIBUTES_FLAGS
.LWA_COLORKEY);
6156
result = PInvoke.SetLayeredWindowAttributes(this, (COLORREF)transparencyKey, OpacityAsByte,
LAYERED_WINDOW_ATTRIBUTES_FLAGS
.LWA_ALPHA |
LAYERED_WINDOW_ATTRIBUTES_FLAGS
.LWA_COLORKEY);
System.Windows.Forms.Primitives (4)
Windows.Win32.PInvoke.USER32.dll.g.cs (2)
3197
internal static winmdroot.Foundation.BOOL SetLayeredWindowAttributes(winmdroot.Foundation.HWND hwnd, winmdroot.Foundation.COLORREF crKey, byte bAlpha, winmdroot.UI.WindowsAndMessaging.
LAYERED_WINDOW_ATTRIBUTES_FLAGS
dwFlags)
3205
static extern winmdroot.Foundation.BOOL LocalExternFunction(winmdroot.Foundation.HWND hwnd, winmdroot.Foundation.COLORREF crKey, byte bAlpha, winmdroot.UI.WindowsAndMessaging.
LAYERED_WINDOW_ATTRIBUTES_FLAGS
dwFlags);
Windows\Win32\PInvoke.SetLayeredWindowAttributes.cs (2)
8
/// <inheritdoc cref="SetLayeredWindowAttributes(HWND, COLORREF, byte,
LAYERED_WINDOW_ATTRIBUTES_FLAGS
)"/>
9
public static BOOL SetLayeredWindowAttributes<T>(T hwnd, COLORREF crKey, byte bAlpha,
LAYERED_WINDOW_ATTRIBUTES_FLAGS
dwFlags)