18 references to WNDCLASS_STYLES
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (1)
1420cp.ClassStyle = (int)WNDCLASS_STYLES.CS_DBLCLKS;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.cs (1)
74cp.ClassStyle |= (int)WNDCLASS_STYLES.CS_DROPSHADOW;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
208cp.ClassStyle |= (int)WNDCLASS_STYLES.CS_DROPSHADOW; 242cp.ClassStyle |= (int)WNDCLASS_STYLES.CS_SAVEBITS;
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (1)
95ClassStyle = (int)WNDCLASS_STYLES.CS_DBLCLKS,
System\Windows\Forms\NativeWindow.cs (1)
402WindowClass windowClass = WindowClass.FindOrCreate(cp.ClassName, (WNDCLASS_STYLES)cp.ClassStyle);
System\Windows\Forms\NativeWindow.WindowClass.cs (3)
24private readonly WNDCLASS_STYLES _classStyle; 35internal WindowClass(string? className, WNDCLASS_STYLES classStyle) 60internal static WindowClass FindOrCreate(string? className, WNDCLASS_STYLES classStyle)
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.FlyoutDialog.cs (1)
64cp.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)
39WNDCLASS_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)
148Assert.Equal(WNDCLASS_STYLES.CS_DBLCLKS, (WNDCLASS_STYLES)createParams.ClassStyle);