55 references to ExtendedStates
System.Windows.Forms (55)
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (1)
93
SetExtendedState(
ExtendedStates
.IsActiveX, true);
System\Windows\Forms\Application.MarshallingControl.cs (1)
19
SetExtendedState(
ExtendedStates
.InterestedInUserPreferenceChanged, false);
System\Windows\Forms\Application.ParkingWindow.cs (1)
25
SetExtendedState(
ExtendedStates
.InterestedInUserPreferenceChanged, false);
System\Windows\Forms\Control.cs (36)
256
private
ExtendedStates
_extendedState;
319
_extendedState =
ExtendedStates
.InterestedInUserPreferenceChanged;
908
get => GetExtendedState(
ExtendedStates
.BecomingActiveControl);
914
SetExtendedState(
ExtendedStates
.BecomingActiveControl, value);
1423
get => GetExtendedState(
ExtendedStates
.TopMDIWindowClosing);
1424
set => SetExtendedState(
ExtendedStates
.TopMDIWindowClosing, value);
1433
get => GetExtendedState(
ExtendedStates
.CurrentlyBeingScaled);
1434
private set => SetExtendedState(
ExtendedStates
.CurrentlyBeingScaled, value);
2062
if (GetExtendedState(
ExtendedStates
.UserPreferredSizeCache))
2090
if (GetExtendedState(
ExtendedStates
.UserPreferredSizeCache) && proposedSize == LayoutUtils.s_maxSize)
2333
internal bool IsActiveX => GetExtendedState(
ExtendedStates
.IsActiveX);
5681
private protected bool GetExtendedState(
ExtendedStates
flag) => (_extendedState & flag) != 0;
6832
SetExtendedState(
ExtendedStates
.SetScrollPosition, true);
7276
&& GetExtendedState(
ExtendedStates
.SetScrollPosition)
7277
&& !GetExtendedState(
ExtendedStates
.HaveInvoked))
7280
SetExtendedState(
ExtendedStates
.HaveInvoked, true);
7281
SetExtendedState(
ExtendedStates
.SetScrollPosition, false);
7346
SetExtendedState(
ExtendedStates
.HaveInvoked, false);
8304
SetExtendedState(
ExtendedStates
.ClearLayoutArgs, false);
8332
if (_cachedLayoutEventArgs is null || GetExtendedState(
ExtendedStates
.ClearLayoutArgs))
8335
if (GetExtendedState(
ExtendedStates
.ClearLayoutArgs))
8337
SetExtendedState(
ExtendedStates
.ClearLayoutArgs, false);
8523
if (!GetExtendedState(
ExtendedStates
.UiCues))
8535
SetExtendedState(
ExtendedStates
.InputKey, true);
8547
SetExtendedState(
ExtendedStates
.InputChar, true);
8590
target.SetExtendedState(
ExtendedStates
.InputKey, false);
8591
target.SetExtendedState(
ExtendedStates
.InputChar, false);
8592
target.SetExtendedState(
ExtendedStates
.UiCues, true);
8621
if (target.GetExtendedState(
ExtendedStates
.InputKey) || target.IsInputKey(keyData))
8630
if (target.GetExtendedState(
ExtendedStates
.InputChar) || target.IsInputChar((char)(nint)message.WParamInternal))
8645
target.SetExtendedState(
ExtendedStates
.UiCues, false);
9390
SetExtendedState(
ExtendedStates
.ClearLayoutArgs, true);
10211
private protected void SetExtendedState(
ExtendedStates
flag, bool value)
11380
if (!GetExtendedState(
ExtendedStates
.MaintainsOwnCaptureMode))
12464
if (GetExtendedState(
ExtendedStates
.InterestedInUserPreferenceChanged) && GetTopLevel())
12514
if (GetExtendedState(
ExtendedStates
.InterestedInUserPreferenceChanged) && GetTopLevel())
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
77
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
125
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
395
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
113
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
31
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\Labels\Label.cs (1)
66
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
128
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
107
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
92
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (2)
139
ExtendedStates
.MaintainsOwnCaptureMode
141
|
ExtendedStates
.UserPreferredSizeCache,
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (1)
43
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
75
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
94
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Panels\Panel.cs (1)
29
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\SendKeys\SendKeys.SKWindow.cs (1)
16
SetExtendedState(
ExtendedStates
.InterestedInUserPreferenceChanged, false);