33 lines
752 B
C#
33 lines
752 B
C#
namespace Hyperbar.Interop.Windows;
|
|
|
|
[Flags]
|
|
public enum ExtendedWindowStyle
|
|
{
|
|
AcceptFiles = 0x10,
|
|
AppWindow = 0x40000,
|
|
ClientEdge = 0x200,
|
|
Composited = 0x2000000,
|
|
ContextHelp = 0x400,
|
|
ControlParent = 0x10000,
|
|
DlgModalFrame = 1,
|
|
Layered = 0x80000,
|
|
LayoutRtl = 0x400000,
|
|
Left = 0,
|
|
LeftScrollBar = 0x4000,
|
|
LtrReading = 0,
|
|
MdiChild = 0x40,
|
|
NoActivate = 0x8000000,
|
|
NoInheritLayout = 0x100000,
|
|
NoParentNotify = 4,
|
|
NoRedirectionBitmap = 0x200000,
|
|
OverlappedWindow = 0x300,
|
|
PaletteWindow = 0x188,
|
|
Right = 0x1000,
|
|
RightScrollBar = 0,
|
|
RtlReading = 0x2000,
|
|
StaticEdge = 0x20000,
|
|
ToolWindow = 0x80,
|
|
TopMost = 8,
|
|
Transparent = 0x20,
|
|
WindowEdge = 0x100
|
|
} |