17 references to Normal
System.Windows.Forms (4)
System\Windows\Forms\Controls\Buttons\ButtonInternal\CheckableControlBaseAdapter.cs (1)
56
return Appearance.
Normal
;
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
57
[DefaultValue(Appearance.
Normal
)]
System\Windows\Forms\Controls\Buttons\RadioButton.cs (2)
34
private Appearance _appearance = Appearance.
Normal
;
76
[DefaultValue(Appearance.
Normal
)]
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ButtonBaseDesigner.cs (2)
69
Appearance appearance = Appearance.
Normal
;
76
if (appearance == Appearance.
Normal
)
System.Windows.Forms.Tests (11)
System\Windows\Forms\AbstractButtonBaseTests.cs (1)
65
if (appearance == Appearance.
Normal
System\Windows\Forms\CheckBoxTests.cs (5)
27
Assert.Equal(Appearance.
Normal
, control.Appearance);
782
yield return new object[] { Appearance.
Normal
, FlatStyle.Standard };
783
yield return new object[] { Appearance.
Normal
, FlatStyle.Flat };
784
yield return new object[] { Appearance.
Normal
, FlatStyle.Popup };
785
yield return new object[] { Appearance.
Normal
, FlatStyle.System };
System\Windows\Forms\RadioButtonTests.cs (5)
27
Assert.Equal(Appearance.
Normal
, control.Appearance);
1662
[InlineData(Appearance.
Normal
, FlatStyle.Standard)]
1663
[InlineData(Appearance.
Normal
, FlatStyle.Flat)]
1664
[InlineData(Appearance.
Normal
, FlatStyle.Popup)]
1665
[InlineData(Appearance.
Normal
, FlatStyle.System)]