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)
270
private
ExtendedStates
_extendedState;
336
_extendedState =
ExtendedStates
.InterestedInUserPreferenceChanged;
1182
get => GetExtendedState(
ExtendedStates
.BecomingActiveControl);
1188
SetExtendedState(
ExtendedStates
.BecomingActiveControl, value);
1690
get => GetExtendedState(
ExtendedStates
.TopMDIWindowClosing);
1691
set => SetExtendedState(
ExtendedStates
.TopMDIWindowClosing, value);
1700
get => GetExtendedState(
ExtendedStates
.CurrentlyBeingScaled);
1701
private set => SetExtendedState(
ExtendedStates
.CurrentlyBeingScaled, value);
2329
if (GetExtendedState(
ExtendedStates
.UserPreferredSizeCache))
2357
if (GetExtendedState(
ExtendedStates
.UserPreferredSizeCache) && proposedSize == LayoutUtils.s_maxSize)
2600
internal bool IsActiveX => GetExtendedState(
ExtendedStates
.IsActiveX);
6033
private protected bool GetExtendedState(
ExtendedStates
flag) => (_extendedState & flag) != 0;
7336
SetExtendedState(
ExtendedStates
.SetScrollPosition, true);
7994
&& GetExtendedState(
ExtendedStates
.SetScrollPosition)
7995
&& !GetExtendedState(
ExtendedStates
.HaveInvoked))
7998
SetExtendedState(
ExtendedStates
.HaveInvoked, true);
7999
SetExtendedState(
ExtendedStates
.SetScrollPosition, false);
8082
SetExtendedState(
ExtendedStates
.HaveInvoked, false);
9151
SetExtendedState(
ExtendedStates
.ClearLayoutArgs, false);
9179
if (_cachedLayoutEventArgs is null || GetExtendedState(
ExtendedStates
.ClearLayoutArgs))
9182
if (GetExtendedState(
ExtendedStates
.ClearLayoutArgs))
9184
SetExtendedState(
ExtendedStates
.ClearLayoutArgs, false);
9370
if (!GetExtendedState(
ExtendedStates
.UiCues))
9382
SetExtendedState(
ExtendedStates
.InputKey, true);
9394
SetExtendedState(
ExtendedStates
.InputChar, true);
9437
target.SetExtendedState(
ExtendedStates
.InputKey, false);
9438
target.SetExtendedState(
ExtendedStates
.InputChar, false);
9439
target.SetExtendedState(
ExtendedStates
.UiCues, true);
9468
if (target.GetExtendedState(
ExtendedStates
.InputKey) || target.IsInputKey(keyData))
9477
if (target.GetExtendedState(
ExtendedStates
.InputChar) || target.IsInputChar((char)(nint)message.WParamInternal))
9492
target.SetExtendedState(
ExtendedStates
.UiCues, false);
10257
SetExtendedState(
ExtendedStates
.ClearLayoutArgs, true);
11067
private protected void SetExtendedState(
ExtendedStates
flag, bool value)
12250
if (!GetExtendedState(
ExtendedStates
.MaintainsOwnCaptureMode))
13334
if (GetExtendedState(
ExtendedStates
.InterestedInUserPreferenceChanged) && GetTopLevel())
13386
if (GetExtendedState(
ExtendedStates
.InterestedInUserPreferenceChanged) && GetTopLevel())
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
79
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
130
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
391
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)
124
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
106
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
103
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (2)
138
ExtendedStates
.MaintainsOwnCaptureMode
140
|
ExtendedStates
.UserPreferredSizeCache,
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (1)
43
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
71
SetExtendedState(
ExtendedStates
.UserPreferredSizeCache, true);
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
93
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);