13 references to GWL_EXSTYLE
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (3)
3635
get => (WINDOW_EX_STYLE)PInvokeCore.GetWindowLong(this, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
);
3636
set => PInvokeCore.SetWindowLong(this, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
, (nint)value);
4761
if (((WINDOW_EX_STYLE)PInvokeCore.GetWindowLong(_window, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
))
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (2)
1506
WINDOW_EX_STYLE style = (WINDOW_EX_STYLE)PInvokeCore.GetWindowLong(handle, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
);
1509
PInvokeCore.SetWindowLong(handle, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
, (nint)style);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
364
&& ((WINDOW_EX_STYLE)PInvokeCore.GetWindowLong(_editTextBox, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
)).HasFlag(WINDOW_EX_STYLE.WS_EX_RTLREADING);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.cs (1)
322
if ((WINDOW_LONG_PTR_INDEX)(int)m.WParamInternal == WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
)
System\Windows\Forms\Form.cs (1)
1595
PInvokeCore.SetWindowLong(this, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
, cp.ExStyle);
System\Windows\Forms\Internal\Win32WindowExtensions.cs (1)
12
WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
);
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Automation\UiaTextProvider.cs (1)
76
(WINDOW_EX_STYLE)PInvokeCore.GetWindowLong(hWnd, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
);
System.Windows.Forms.Tests (3)
System\Windows\Forms\FormTests.cs (3)
206
WINDOW_EX_STYLE extendedStyle = (WINDOW_EX_STYLE)PInvokeCore.GetWindowLong(form, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
);
1094
WINDOW_EX_STYLE extendedStyle = unchecked((WINDOW_EX_STYLE)(long)PInvokeCore.GetWindowLong(form, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
));
1100
extendedStyle = unchecked((WINDOW_EX_STYLE)(long)PInvokeCore.GetWindowLong(form, WINDOW_LONG_PTR_INDEX.
GWL_EXSTYLE
));