5 overrides of CreateStandardAdapter
System.Windows.Forms (3)
System\Windows\Forms\Controls\Buttons\Button.cs (1)
82internal override ButtonBaseAdapter CreateStandardAdapter() => DarkModeAdapterFactory.CreateStandardAdapter(this);
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
531internal override ButtonBaseAdapter CreateStandardAdapter() => new CheckBoxStandardAdapter(this);
System\Windows\Forms\Controls\Buttons\RadioButton.cs (1)
472internal override ButtonBaseAdapter CreateStandardAdapter() => new RadioButtonStandardAdapter(this);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ButtonFlatAdapterTests.cs (1)
28internal override ButtonBaseAdapter CreateStandardAdapter() => new ButtonFlatAdapter(this);
System\Windows\Forms\ButtonPopupAdapterTests.cs (1)
37internal 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();