20 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)
59
[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 (14)
System\Windows\Forms\AbstractButtonBaseTests.cs (1)
65
if (appearance == Appearance.
Normal
System\Windows\Forms\CheckBoxTests.cs (8)
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 };
878
[InlineData(Appearance.
Normal
, FlatStyle.System, "Test", 12, 8, 100, 20)]
879
[InlineData(Appearance.
Normal
, FlatStyle.Flat, "Test", 12, 8, 100, 20)]
880
[InlineData(Appearance.
Normal
, FlatStyle.Standard, "Test", 12, 8, 100, 20)]
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)]