3 types derived from ButtonBase
System.Windows.Forms (3)
winforms\Managed\System\WinForms\Button.cs (1)
37public class Button : ButtonBase, IButtonControl {
winforms\Managed\System\WinForms\CheckBox.cs (1)
44public class CheckBox : ButtonBase {
winforms\Managed\System\WinForms\RadioButton.cs (1)
46public class RadioButton : ButtonBase {
32 references to ButtonBase
System.Windows.Forms (32)
winforms\Managed\System\WinForms\Button.cs (1)
292/// Raises the <see cref='System.Windows.Forms.ButtonBase.OnMouseUp'/> event.
winforms\Managed\System\WinForms\ButtonBase.cs (10)
66/// Initializes a new instance of the <see cref='System.Windows.Forms.ButtonBase'/> class. 788/// Raises the <see cref='System.Windows.Forms.ButtonBase.OnGotFocus'/> event. 800/// Raises the <see cref='System.Windows.Forms.ButtonBase.OnLostFocus'/> event. 916/// Raises the <see cref='System.Windows.Forms.ButtonBase.OnMouseUp'/> event. 1066/// Raises the <see cref='System.Windows.Forms.ButtonBase.OnKeyDown'/> event. 1095/// Raises the <see cref='System.Windows.Forms.ButtonBase.OnKeyUp'/> event. 1126/// Raises the <see cref='System.Windows.Forms.ButtonBase.OnPaint'/> event. 1346((ButtonBase)Owner).OnClick(EventArgs.Empty); 1354ButtonBase owner = (ButtonBase) Owner;
winforms\Managed\System\WinForms\ButtonInternal\ButtonBaseAdapter.cs (3)
29private ButtonBase control; 34internal ButtonBaseAdapter(ButtonBase control) { 38protected ButtonBase Control {
winforms\Managed\System\WinForms\ButtonInternal\ButtonFlatAdapter.cs (1)
23internal ButtonFlatAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\ButtonPopupAdapter.cs (1)
22internal ButtonPopupAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\ButtonStandardAdapter.cs (1)
27internal ButtonStandardAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\CheckableControlBaseAdapter.cs (1)
23internal CheckableControlBaseAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxBaseAdapter.cs (1)
33internal CheckBoxBaseAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxFlatAdapter.cs (1)
18internal CheckBoxFlatAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxPopupAdapter.cs (1)
21internal CheckBoxPopupAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxStandardAdapter.cs (1)
19internal CheckBoxStandardAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonBaseAdapter.cs (1)
20internal RadioButtonBaseAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonFlatAdapter.cs (1)
20internal RadioButtonFlatAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonPopupAdapter.cs (1)
18internal RadioButtonPopupAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonStandardAdapter.cs (2)
18internal RadioButtonStandardAdapter(ButtonBase control) : base(control) {} 73ButtonBase b = Control;
winforms\Managed\System\WinForms\CheckBox.cs (1)
639/// Raises the <see cref='System.Windows.Forms.ButtonBase.OnMouseUp'/> event.
winforms\Managed\System\WinForms\FlatButtonAppearance.cs (2)
20private ButtonBase owner; 28internal FlatButtonAppearance(ButtonBase owner) {
winforms\Managed\System\WinForms\PropertyGridInternal\DropDownButton.cs (1)
154internal DropDownButtonAdapter(ButtonBase control) : base(control) {}
winforms\Managed\System\WinForms\RadioButton.cs (1)
566/// Raises the <see cref='System.Windows.Forms.ButtonBase.OnMouseUp'/> event.