ButtonState | serializable, flag |
System.Windows.Forms (system.windows.forms.dll) | enum |
This enumeration is used by various ControlPaint
methods that deal with drawing buttons, to specify the state in which
the button imagery should be drawn.
public enum ButtonState {
Normal = 0x00000000,
Inactive = 0x00000100,
Pushed = 0x00000200,
Checked = 0x00000400,
Flat = 0x00004000,
All = 0x00004700
}
Hierarchy
System.Object System.ValueType
System.Enum(System.IComparabl,
System.IFormattable,
System.IConvertible)
ButtonState
Passed To
ControlPaint.{DrawButton(),
DrawCaptionButton(), DrawCheckBox(), DrawComboButton(),
DrawMixedCheckBox(), DrawRadioButton(), DrawScrollButton()}
|