26 references to Inactive
System.Windows.Forms (26)
System\Windows\Forms\Controls\Buttons\ButtonInternal\CheckBoxBaseAdapter.cs (1)
247
style |= ButtonState.
Inactive
;
System\Windows\Forms\Controls\Buttons\ButtonInternal\RadioButtonBaseAdapter.cs (1)
183
style |= ButtonState.
Inactive
;
System\Windows\Forms\Controls\Buttons\ButtonRenderer.cs (1)
284
PushButtonState.Disabled => ButtonState.
Inactive
,
System\Windows\Forms\Controls\Buttons\ButtonState.cs (1)
41
All = Flat | Checked | Pushed |
Inactive
,
System\Windows\Forms\Controls\Buttons\CheckBoxRenderer.cs (9)
259
CheckBoxState.CheckedDisabled => (ButtonState.Checked | ButtonState.
Inactive
),
261
CheckBoxState.UncheckedDisabled => ButtonState.
Inactive
,
265
CheckBoxState.MixedDisabled => (ButtonState.Checked | ButtonState.
Inactive
),
277
else if ((state & ButtonState.
Inactive
) == ButtonState.
Inactive
)
294
else if ((state & ButtonState.
Inactive
) == ButtonState.
Inactive
)
312
else if ((state & ButtonState.
Inactive
) == ButtonState.
Inactive
)
System\Windows\Forms\Controls\Buttons\RadioButtonRenderer.cs (6)
272
RadioButtonState.CheckedDisabled => ButtonState.Checked | ButtonState.
Inactive
,
274
RadioButtonState.UncheckedDisabled => ButtonState.
Inactive
,
286
else if ((state & ButtonState.
Inactive
) == ButtonState.
Inactive
)
304
else if ((state & ButtonState.
Inactive
) == ButtonState.
Inactive
)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
515
state |= ButtonState.Checked | ButtonState.
Inactive
;
System\Windows\Forms\Controls\UpDown\UpDownBase.UpDownButtons.cs (2)
309
_pushed == ButtonID.Up ? ButtonState.Pushed : (Enabled ? ButtonState.Normal : ButtonState.
Inactive
));
315
_pushed == ButtonID.Down ? ButtonState.Pushed : (Enabled ? ButtonState.Normal : ButtonState.
Inactive
));
System\Windows\Forms\Rendering\ControlPaint.cs (4)
1323
Brush background = ((state & ButtonState.
Inactive
) == ButtonState.
Inactive
)
1326
Color foreground = ((state & ButtonState.
Inactive
) == ButtonState.
Inactive
)