1234567891011121314 |
- namespace System.Windows.Forms
- {
- public class RadioButton : ToggleButtonBase
- {
- protected new System.Windows.Controls.RadioButton control { get; }
- public RadioButton()
- {
- control = new();
- SetControl(control);
- control.Padding = new Thickness(4, 1, 0, 0);
- }
- }
- }
|