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)
71
Appearance appearance = Appearance.
Normal
;
78
if (appearance == Appearance.
Normal
)
System.Windows.Forms.Tests (11)
System\Windows\Forms\AbstractButtonBaseTests.cs (1)
63
if (appearance == Appearance.
Normal
System\Windows\Forms\CheckBoxTests.cs (5)
25
Assert.Equal(Appearance.
Normal
, control.Appearance);
780
yield return new object[] { Appearance.
Normal
, FlatStyle.Standard };
781
yield return new object[] { Appearance.
Normal
, FlatStyle.Flat };
782
yield return new object[] { Appearance.
Normal
, FlatStyle.Popup };
783
yield return new object[] { Appearance.
Normal
, FlatStyle.System };
System\Windows\Forms\RadioButtonTests.cs (5)
25
Assert.Equal(Appearance.
Normal
, control.Appearance);
1660
[InlineData(Appearance.
Normal
, FlatStyle.Standard)]
1661
[InlineData(Appearance.
Normal
, FlatStyle.Flat)]
1662
[InlineData(Appearance.
Normal
, FlatStyle.Popup)]
1663
[InlineData(Appearance.
Normal
, FlatStyle.System)]