5 overrides of CreateStandardAdapter
System.Windows.Forms (3)
System\Windows\Forms\Controls\Buttons\Button.cs (1)
82
internal override ButtonBaseAdapter
CreateStandardAdapter
() => DarkModeAdapterFactory.CreateStandardAdapter(this);
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
531
internal override ButtonBaseAdapter
CreateStandardAdapter
() => new CheckBoxStandardAdapter(this);
System\Windows\Forms\Controls\Buttons\RadioButton.cs (1)
472
internal override ButtonBaseAdapter
CreateStandardAdapter
() => new RadioButtonStandardAdapter(this);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ButtonFlatAdapterTests.cs (1)
28
internal override ButtonBaseAdapter
CreateStandardAdapter
() => new ButtonFlatAdapter(this);
System\Windows\Forms\ButtonPopupAdapterTests.cs (1)
37
internal override ButtonBaseAdapter
CreateStandardAdapter
() => new ButtonPopupAdapter(this);
1 reference to CreateStandardAdapter
System.Windows.Forms (1)
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
1036
_adapter =
CreateStandardAdapter
();