4 writes to _state
System.Windows.Forms (4)
System\Windows\Forms\Control.cs (4)
330
_state
= States.Visible | States.Enabled | States.TabStop | States.CausesValidation;
10320
_state
= value ? _state | flag : _state & ~flag;
11026
_state
|= States.NoZOrder;
11037
_state
&= ~States.NoZOrder;
12 references to _state
System.Windows.Forms (12)
System\Windows\Forms\Control.ControlCollection.cs (1)
106
if (oldParent != value._parent && (Owner.
_state
& States.Created) != 0)
System\Windows\Forms\Control.cs (11)
1401
if (!
_state
.HasFlag(States.TopLevel))
1413
if (
_state
.HasFlag(States.TabStop))
1418
if (
_state
.HasFlag(States.Visible))
3157
get => (
_state
& States.TabStop) != 0;
5129
protected bool GetTopLevel() => (
_state
& States.TopLevel) != 0;
5790
private protected bool GetState(States flag) => (
_state
& flag) != 0;
10320
_state = value ?
_state
| flag :
_state
& ~flag;
11075
if ((
_state
& States.Visible) != 0)
12078
if (
_state
.HasFlag(States.Recreate))
12237
&& (
_state
& States.NoZOrder) == 0)