18 references to WNDCLASS_STYLES
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (1)
1420
cp.ClassStyle = (int)
WNDCLASS_STYLES
.CS_DBLCLKS;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.cs (1)
74
cp.ClassStyle |= (int)
WNDCLASS_STYLES
.CS_DROPSHADOW;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
208
cp.ClassStyle |= (int)
WNDCLASS_STYLES
.CS_DROPSHADOW;
242
cp.ClassStyle |= (int)
WNDCLASS_STYLES
.CS_SAVEBITS;
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (1)
95
ClassStyle = (int)
WNDCLASS_STYLES
.CS_DBLCLKS,
System\Windows\Forms\NativeWindow.cs (1)
402
WindowClass windowClass = WindowClass.FindOrCreate(cp.ClassName, (
WNDCLASS_STYLES
)cp.ClassStyle);
System\Windows\Forms\NativeWindow.WindowClass.cs (3)
24
private readonly
WNDCLASS_STYLES
_classStyle;
35
internal WindowClass(string? className,
WNDCLASS_STYLES
classStyle)
60
internal static WindowClass FindOrCreate(string? className,
WNDCLASS_STYLES
classStyle)
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.FlyoutDialog.cs (1)
64
cp.ClassStyle |= (int)
WNDCLASS_STYLES
.CS_SAVEBITS;
System.Windows.Forms.Primitives (1)
Windows.Win32.WNDCLASSW.g.cs (1)
34
internal winmdroot.UI.WindowsAndMessaging.
WNDCLASS_STYLES
style;
System.Windows.Forms.Primitives.TestUtilities (3)
Win32\WindowClass.cs (3)
39
WNDCLASS_STYLES
classStyle =
WNDCLASS_STYLES
.CS_HREDRAW |
WNDCLASS_STYLES
.CS_VREDRAW,
System.Windows.Forms.Tests (4)
System\Windows\Forms\DomainUpDownTests.cs (2)
165
((
WNDCLASS_STYLES
)createParams.ClassStyle).Should().Be(
WNDCLASS_STYLES
.CS_DBLCLKS);
System\Windows\Forms\UpDownBaseTests.cs (2)
148
Assert.Equal(
WNDCLASS_STYLES
.CS_DBLCLKS, (
WNDCLASS_STYLES
)createParams.ClassStyle);