RadioButton.cs 342 B

1234567891011121314
  1. namespace System.Windows.Forms
  2. {
  3. public class RadioButton : ToggleButtonBase
  4. {
  5. protected new System.Windows.Controls.RadioButton control { get; }
  6. public RadioButton()
  7. {
  8. control = new();
  9. SetControl(control);
  10. control.Padding = new Thickness(4, 1, 0, 0);
  11. }
  12. }
  13. }