35 references to Normal
System.Windows.Forms (31)
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxBaseAdapter.cs (1)
198
style |= ButtonState.
Normal
;
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonBaseAdapter.cs (1)
162
style |= ButtonState.
Normal
;
winforms\Managed\System\WinForms\ButtonRenderer.cs (1)
266
return ButtonState.
Normal
;
winforms\Managed\System\WinForms\CheckBoxRenderer.cs (1)
270
return ButtonState.
Normal
;
winforms\Managed\System\WinForms\CheckedListBox.cs (1)
663
ButtonState state = ButtonState.
Normal
;
winforms\Managed\System\WinForms\DataGridBoolColumn.cs (1)
386
checkedState = ((bool)value ? ButtonState.Checked : ButtonState.
Normal
);
winforms\Managed\System\WinForms\DataGridViewButtonCell.cs (6)
59
return ButtonState.
Normal
;
65
Debug.Assert((value & ~(ButtonState.
Normal
| ButtonState.Pushed | ButtonState.Checked)) == 0);
551
if (this.ButtonState != ButtonState.
Normal
)
554
UpdateButtonState(ButtonState.
Normal
, rowIndex);
793
(this.ButtonState == ButtonState.
Normal
) ? ButtonBorderStyle.Outset : ButtonBorderStyle.Inset);
985
bool paintUp = (this.ButtonState == ButtonState.
Normal
);
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (7)
210
return ButtonState.
Normal
;
216
Debug.Assert((value & ~(ButtonState.
Normal
| ButtonState.Pushed | ButtonState.Checked)) == 0);
983
if (this.ButtonState != ButtonState.
Normal
)
986
UpdateButtonState(ButtonState.
Normal
, rowIndex);
1191
bs = (checkState == CheckState.Unchecked) ? ButtonState.
Normal
: ButtonState.Checked;
1204
bs = ButtonState.
Normal
;
1210
bs = ButtonState.
Normal
; // Default rendering of the checkbox with wrong formatted value type.
winforms\Managed\System\WinForms\DataGridViewColumnHeaderCell.cs (1)
831
if (this.ButtonState != ButtonState.
Normal
)
winforms\Managed\System\WinForms\DataGridViewHeaderCell.cs (6)
51
return ButtonState.
Normal
;
545
return this.ButtonState != ButtonState.
Normal
&& this.DataGridView.ApplyVisualStylesToHeaderCells;
580
this.ButtonState == ButtonState.
Normal
&&
599
if (this.ButtonState != ButtonState.
Normal
)
604
UpdateButtonState(ButtonState.
Normal
, rowIndex);
619
UpdateButtonState(ButtonState.
Normal
, e.RowIndex);
winforms\Managed\System\WinForms\DataGridViewRowHeaderCell.cs (1)
818
if (this.ButtonState != ButtonState.
Normal
)
winforms\Managed\System\WinForms\DataGridViewTopLeftHeaderCell.cs (1)
289
if (this.ButtonState != ButtonState.
Normal
)
winforms\Managed\System\WinForms\RadioButtonRenderer.cs (1)
247
return ButtonState.
Normal
;
winforms\Managed\System\WinForms\UpDownBase.cs (2)
1724
pushed == ButtonID.Up ? ButtonState.Pushed : (Enabled ? ButtonState.
Normal
: ButtonState.Inactive));
1729
pushed == ButtonID.Down ? ButtonState.Pushed : (Enabled ? ButtonState.
Normal
: ButtonState.Inactive));
System.Workflow.ComponentModel (4)
AuthoringOM\Design\DesignerHelpers.cs (1)
303
if (buttonState == ButtonState.
Normal
|| buttonState == ButtonState.Inactive)
AuthoringOM\Design\DesignerWidgets.cs (1)
3414
ActivityDesignerPaint.Draw3DButton(graphics, null, this.previewModeButtonRectangle, 1.0f, (!PreviewMode) ? ButtonState.Pushed : ButtonState.
Normal
);
AuthoringOM\Design\MessageFilters\DynamicActionMessageFilter.cs (2)
535
ActivityDesignerPaint.Draw3DButton(graphics, null, Bounds, this.transparency - 0.1f, ButtonState.
Normal
);
551
ButtonState state = (button.State == ActionButton.States.Highlight) ? ButtonState.
Normal
: ButtonState.Pushed;