251 references to System
Accessibility_Core_App (2)
CommonControl1.Designer.cs (1)
116this.button12.FlatStyle = System.Windows.Forms.FlatStyle.System;
ContainerControls.Designer.cs (1)
265this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.System;
System.Windows.Forms (32)
System\Windows\Forms\Controls\Buttons\Button.cs (1)
86if (FlatStyle != FlatStyle.System)
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
620internal bool OwnerDraw => FlatStyle != FlatStyle.System;
System\Windows\Forms\Controls\Buttons\ButtonInternal\ButtonBaseAdapter.cs (1)
615if (Control.FlatStyle != FlatStyle.System)
System\Windows\Forms\Controls\Buttons\CheckBox.cs (4)
278if (FlatStyle != FlatStyle.System) 317if (Appearance == Appearance.Button || FlatStyle == FlatStyle.System) 410if (FlatStyle == FlatStyle.System) 427if (FlatStyle == FlatStyle.System)
System\Windows\Forms\Controls\Buttons\RadioButton.cs (2)
249if (FlatStyle != FlatStyle.System) 287Appearance == Appearance.Button || FlatStyle == FlatStyle.System
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (4)
76Debug.Assert(value is >= FlatStyle.Flat and <= FlatStyle.System); 718case FlatStyle.System: 888if (FlatStyle is FlatStyle.System or FlatStyle.Standard) 978(FlatStyle == FlatStyle.System || FlatStyle == FlatStyle.Standard))
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (4)
251Debug.Assert(value is >= FlatStyle.Flat and <= FlatStyle.System); 660case FlatStyle.System: 1167case FlatStyle.System: 1245if (FlatStyle is FlatStyle.System or FlatStyle.Standard)
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (3)
363Debug.Assert(value is >= FlatStyle.Flat and <= FlatStyle.System); 1715(FlatStyle == FlatStyle.Standard || FlatStyle == FlatStyle.System) && 1737if ((FlatStyle == FlatStyle.Standard || FlatStyle == FlatStyle.System) && DataGridView.ApplyVisualStylesToInnerCells)
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
215private bool OwnerDraw => FlatStyle != FlatStyle.System;
System\Windows\Forms\Controls\Labels\Label.cs (7)
34private static readonly BitVector32.Section s_stateFlatStyle = BitVector32.CreateSection((int)FlatStyle.System, s_stateAnimating); 336bool needRecreate = (_labelState[s_stateFlatStyle] == (int)FlatStyle.System) || (value == FlatStyle.System); 1047internal virtual bool UseGDIMeasuring() => (FlatStyle == FlatStyle.System || !UseCompatibleTextRendering); 1074TextFormatFlags format = FlatStyle == FlatStyle.System ? TextFormatFlags.Default : CreateTextFormatFlags(proposedConstraints); 1106if (UseCompatibleTextRendering && FlatStyle != FlatStyle.System) 1146private bool IsOwnerDraw() => FlatStyle != FlatStyle.System;
System\Windows\Forms\Design\ComponentEditorForm.cs (4)
270_helpButton.FlatStyle = FlatStyle.System; 277_applyButton.FlatStyle = FlatStyle.System; 283_cancelButton.FlatStyle = FlatStyle.System; 290_okButton.FlatStyle = FlatStyle.System;
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\ButtonBaseDesigner.cs (6)
109if (flatStyle is FlatStyle.Standard or FlatStyle.System) 124else if (flatStyle == FlatStyle.System) 145else if (flatStyle == FlatStyle.System) 165if (flatStyle == FlatStyle.System) 180else if (flatStyle == FlatStyle.System) 205else if (flatStyle == FlatStyle.System)
System.Windows.Forms.Tests (204)
System\Windows\Forms\AccessibleObjects\ButtonBase.ButtonBaseAccessibleObjectTests.cs (4)
37[InlineData(FlatStyle.System, true, true, AccessibleStates.Focusable)] 38[InlineData(FlatStyle.System, false, true, AccessibleStates.None)] 39[InlineData(FlatStyle.System, true, false, AccessibleStates.Focusable)] 40[InlineData(FlatStyle.System, false, false, AccessibleStates.None)]
System\Windows\Forms\ButtonBaseTests.cs (94)
152[InlineData(FlatStyle.System, true, 0x56012F01)] 153[InlineData(FlatStyle.System, false, 0x56012F00)] 190yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.BottomLeft, 0x56012A00, 0x6000 }; 191yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.BottomCenter, 0x56012B00, 0x6000 }; 192yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.BottomRight, 0x56012900, 0x6000 }; 193yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.MiddleLeft, 0x56012E00, 0x6000 }; 194yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.MiddleCenter, 0x56012F00, 0x6000 }; 195yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.MiddleRight, 0x56012D00, 0x6000 }; 196yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.TopLeft, 0x56012600, 0x6000 }; 197yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.TopCenter, 0x56012700, 0x6000 }; 198yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.TopRight, 0x56012500, 0x6000 }; 200yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.BottomLeft, 0x56012900, 0 }; 201yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.BottomCenter, 0x56012B00, 0 }; 202yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.BottomRight, 0x56012A00, 0 }; 203yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.MiddleLeft, 0x56012D00, 0 }; 204yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.MiddleCenter, 0x56012F00, 0 }; 205yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.MiddleRight, 0x56012E00, 0 }; 206yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.TopLeft, 0x56012500, 0 }; 207yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.TopCenter, 0x56012700, 0 }; 208yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.TopRight, 0x56012600, 0 }; 210yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.BottomLeft, 0x56012900, 0 }; 211yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.BottomCenter, 0x56012B00, 0 }; 212yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.BottomRight, 0x56012A00, 0 }; 213yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.MiddleLeft, 0x56012D00, 0 }; 214yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.MiddleCenter, 0x56012F00, 0 }; 215yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.MiddleRight, 0x56012E00, 0 }; 216yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.TopLeft, 0x56012500, 0 }; 217yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.TopCenter, 0x56012700, 0 }; 218yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.TopRight, 0x56012600, 0 }; 1064Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1065Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1072Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1073Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1106Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1107Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1114Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1115Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1125yield return new object[] { true, FlatStyle.System, 1 }; 1130yield return new object[] { false, FlatStyle.System, 0 }; 1160Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1161Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1170Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1171Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1190yield return new object[] { autoSize, FlatStyle.System, 1, 1 }; 1214Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1215Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1224Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1225Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1237yield return new object[] { FlatStyle.Flat, FlatStyle.System, 1, 1 }; 1242yield return new object[] { FlatStyle.Popup, FlatStyle.System, 1, 1 }; 1247yield return new object[] { FlatStyle.Standard, FlatStyle.System, 1, 1 }; 1249yield return new object[] { FlatStyle.System, FlatStyle.Flat, 1, 1 }; 1250yield return new object[] { FlatStyle.System, FlatStyle.Popup, 1, 1 }; 1251yield return new object[] { FlatStyle.System, FlatStyle.Standard, 1, 1 }; 1252yield return new object[] { FlatStyle.System, FlatStyle.System, 0, 0 }; 1273Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1274Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1283Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1284Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1296yield return new object[] { true, FlatStyle.System, 1, 1, 1 }; 1301yield return new object[] { false, FlatStyle.System, 0, 1, 1 }; 1339Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1340Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 1352Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserMouse)); 1353Assert.Equal(value != FlatStyle.System, control.GetStyle(ControlStyles.UserPaint)); 2744yield return new object[] { FlatStyle.System, true, 1, 1, 2, 2 }; 2749yield return new object[] { FlatStyle.System, false, 0, 0, 1, 1 }; 3368yield return new object[] { autoSize, FlatStyle.System, value, expectedCallCount, expectedCallCount }; 3418yield return new object[] { true, FlatStyle.System, value, expectedCallCount, expectedCallCount, expectedCallCount }; 3423yield return new object[] { false, FlatStyle.System, value, 0, expectedCallCount, expectedCallCount }; 5480bool expectedIsHandleCreated = flatStyle == FlatStyle.System; 5695[InlineData(FlatStyle.System, Keys.Cancel, 0)] 5696[InlineData(FlatStyle.System, Keys.Enter, 0)] 5697[InlineData(FlatStyle.System, Keys.Space, 0)] 5719[InlineData(FlatStyle.System, Keys.Cancel, 0)] 5720[InlineData(FlatStyle.System, Keys.Enter, 0)] 5721[InlineData(FlatStyle.System, Keys.Space, 0)] 5796bool expectedIsHandleCreated = flatStyle == FlatStyle.System; 5901int expectedCallCount = flatStyle == FlatStyle.System ? 0 : 1; 5974[InlineData(FlatStyle.System, Keys.Cancel, 0)] 5975[InlineData(FlatStyle.System, Keys.Enter, 0)] 5976[InlineData(FlatStyle.System, Keys.Space, 0)] 5998[InlineData(FlatStyle.System, Keys.Cancel, 0)] 5999[InlineData(FlatStyle.System, Keys.Enter, 0)] 6000[InlineData(FlatStyle.System, Keys.Space, 0)] 7784[InlineData(FlatStyle.System, 0)] 8129[InlineData(FlatStyle.System, 0)] 8634[InlineData(FlatStyle.System, 1)] 9110yield return new object[] { FlatStyle.System, IntPtr.Zero, (IntPtr)250, 1 }; 9111yield return new object[] { FlatStyle.System, PARAM.FromLowHigh(0, (int)PInvoke.BN_CLICKED), (IntPtr)250, 1 }; 9112yield return new object[] { FlatStyle.System, PARAM.FromLowHigh(123, (int)PInvoke.BN_CLICKED), (IntPtr)250, 1 }; 9113yield return new object[] { FlatStyle.System, PARAM.FromLowHigh(123, 456), (IntPtr)250, 0 }; 9190yield return new object[] { FlatStyle.System, IntPtr.Zero };
System\Windows\Forms\ButtonTests.cs (46)
174[InlineData(FlatStyle.System, true, 0x56012F01)] 175[InlineData(FlatStyle.System, false, 0x56012F00)] 212yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.BottomLeft, 0x56012A00, 0x6000 }; 213yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.BottomCenter, 0x56012B00, 0x6000 }; 214yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.BottomRight, 0x56012900, 0x6000 }; 215yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.MiddleLeft, 0x56012E00, 0x6000 }; 216yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.MiddleCenter, 0x56012F00, 0x6000 }; 217yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.MiddleRight, 0x56012D00, 0x6000 }; 218yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.TopLeft, 0x56012600, 0x6000 }; 219yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.TopCenter, 0x56012700, 0x6000 }; 220yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.TopRight, 0x56012500, 0x6000 }; 222yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.BottomLeft, 0x56012900, 0 }; 223yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.BottomCenter, 0x56012B00, 0 }; 224yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.BottomRight, 0x56012A00, 0 }; 225yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.MiddleLeft, 0x56012D00, 0 }; 226yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.MiddleCenter, 0x56012F00, 0 }; 227yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.MiddleRight, 0x56012E00, 0 }; 228yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.TopLeft, 0x56012500, 0 }; 229yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.TopCenter, 0x56012700, 0 }; 230yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.TopRight, 0x56012600, 0 }; 232yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.BottomLeft, 0x56012900, 0 }; 233yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.BottomCenter, 0x56012B00, 0 }; 234yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.BottomRight, 0x56012A00, 0 }; 235yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.MiddleLeft, 0x56012D00, 0 }; 236yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.MiddleCenter, 0x56012F00, 0 }; 237yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.MiddleRight, 0x56012E00, 0 }; 238yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.TopLeft, 0x56012500, 0 }; 239yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.TopCenter, 0x56012700, 0 }; 240yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.TopRight, 0x56012600, 0 }; 592FlatStyle = FlatStyle.System, 693FlatStyle = FlatStyle.System, 948FlatStyle = FlatStyle.System, 1040[InlineData(true, FlatStyle.System, AccessibleStates.Focusable, AccessibleRole.PushButton)] 1044[InlineData(false, FlatStyle.System, AccessibleStates.None, AccessibleRole.None)] 1201FlatStyle = FlatStyle.System, 1250FlatStyle = FlatStyle.System, 1300FlatStyle = FlatStyle.System, 1333FlatStyle = FlatStyle.System, 1357FlatStyle = FlatStyle.System, 1841yield return new object[] { FlatStyle.System, true, 1, 1, 2, 2 }; 1846yield return new object[] { FlatStyle.System, false, 0, 0, 1, 1 }; 2798int expectedCallCount = flatStyle != FlatStyle.System ? 1 : 0; 3575yield return new object[] { FlatStyle.System, IntPtr.Zero, (IntPtr)250, 1 }; 3576yield return new object[] { FlatStyle.System, PARAM.FromLowHigh(0, (int)PInvoke.BN_CLICKED), (IntPtr)250, 1 }; 3577yield return new object[] { FlatStyle.System, PARAM.FromLowHigh(123, (int)PInvoke.BN_CLICKED), (IntPtr)250, 1 }; 3578yield return new object[] { FlatStyle.System, PARAM.FromLowHigh(123, 456), (IntPtr)250, 0 };
System\Windows\Forms\CheckBoxTests.cs (3)
779yield return new object[] { Appearance.Button, FlatStyle.System }; 783yield return new object[] { Appearance.Normal, FlatStyle.System }; 800if (appearance == Appearance.Button || flatStyle == FlatStyle.System)
System\Windows\Forms\ComboBoxTests.cs (16)
1776yield return new object[] { FlatStyle.System, false, true, allPaintingInWmPaint, false, 0 }; 1780yield return new object[] { FlatStyle.System, false, false, allPaintingInWmPaint, false, 0 }; 1785yield return new object[] { FlatStyle.System, true, true, allPaintingInWmPaint, true, 0 }; 1789yield return new object[] { FlatStyle.System, true, false, allPaintingInWmPaint, true, 1 }; 1853yield return new object[] { FlatStyle.System, false, true, allPaintingInWmPaint, 0 }; 1857yield return new object[] { FlatStyle.System, false, false, allPaintingInWmPaint, 0 }; 1862yield return new object[] { FlatStyle.System, true, true, allPaintingInWmPaint, 0 }; 1866yield return new object[] { FlatStyle.System, true, false, allPaintingInWmPaint, 1 }; 1944yield return new object[] { FlatStyle.System, false, true, allPaintingInWmPaint, false, 0 }; 1948yield return new object[] { FlatStyle.System, false, false, allPaintingInWmPaint, false, 0 }; 1953yield return new object[] { FlatStyle.System, true, true, allPaintingInWmPaint, false, 1 }; 1957yield return new object[] { FlatStyle.System, true, false, allPaintingInWmPaint, false, 1 }; 2043yield return new object[] { FlatStyle.System, false, true, allPaintingInWmPaint, 0 }; 2047yield return new object[] { FlatStyle.System, false, false, allPaintingInWmPaint, 0 }; 2052yield return new object[] { FlatStyle.System, true, true, allPaintingInWmPaint, 1 }; 2056yield return new object[] { FlatStyle.System, true, false, allPaintingInWmPaint, 1 };
System\Windows\Forms\GroupBoxTests.cs (31)
130[InlineData(FlatStyle.System, "Button", 0x56000007)] 621[InlineData(FlatStyle.System, true, false, false)] 651[InlineData(FlatStyle.Flat, FlatStyle.System, true, false, false)] 655[InlineData(FlatStyle.Popup, FlatStyle.System, true, false, false)] 659[InlineData(FlatStyle.Standard, FlatStyle.System, true, false, false)] 660[InlineData(FlatStyle.System, FlatStyle.Flat, true, true, true)] 661[InlineData(FlatStyle.System, FlatStyle.Popup, true, true, true)] 662[InlineData(FlatStyle.System, FlatStyle.Standard, true, true, true)] 663[InlineData(FlatStyle.System, FlatStyle.System, false, false, false)] 696[InlineData(FlatStyle.System, true, false, false, 0, 1)] 744[InlineData(FlatStyle.System, true, false, false, 1, 1)] 798[InlineData(FlatStyle.Flat, FlatStyle.System, true, false, false, 0, 1)] 802[InlineData(FlatStyle.Popup, FlatStyle.System, true, false, false, 0, 1)] 806[InlineData(FlatStyle.Standard, FlatStyle.System, true, false, false, 0, 1)] 807[InlineData(FlatStyle.System, FlatStyle.Flat, true, true, true, 0, 1)] 808[InlineData(FlatStyle.System, FlatStyle.Popup, true, true, true, 0, 1)] 809[InlineData(FlatStyle.System, FlatStyle.Standard, true, true, true, 0, 1)] 810[InlineData(FlatStyle.System, FlatStyle.System, false, false, false, 0, 0)] 861[InlineData(FlatStyle.Flat, FlatStyle.System, true, false, false, 0, 1)] 865[InlineData(FlatStyle.Popup, FlatStyle.System, true, false, false, 0, 1)] 869[InlineData(FlatStyle.Standard, FlatStyle.System, true, false, false, 0, 1)] 870[InlineData(FlatStyle.System, FlatStyle.Flat, true, true, true, 0, 1)] 871[InlineData(FlatStyle.System, FlatStyle.Popup, true, true, true, 0, 1)] 872[InlineData(FlatStyle.System, FlatStyle.Standard, true, true, true, 0, 1)] 873[InlineData(FlatStyle.System, FlatStyle.System, false, false, false, 0, 0)] 2085FlatStyle = FlatStyle.System 2115FlatStyle = FlatStyle.System 2156FlatStyle = FlatStyle.System
System\Windows\Forms\LabelTests.cs (1)
350[InlineData(FlatStyle.System)]
System\Windows\Forms\RadioButtonTests.cs (8)
346yield return new object[] { autoSize, FlatStyle.System, value, expectedCallCount, expectedCallCount }; 488[InlineData(FlatStyle.System, "", true, AccessibleStates.Focusable)] 492[InlineData(FlatStyle.System, "Description", true, AccessibleStates.Focusable)] 496[InlineData(FlatStyle.System, "", false, AccessibleStates.None)] 500[InlineData(FlatStyle.System, "Description", false, AccessibleStates.None)] 1100bool expectedIsHandleCreated = flatStyle != FlatStyle.System; 1659[InlineData(Appearance.Button, FlatStyle.System)] 1663[InlineData(Appearance.Normal, FlatStyle.System)]
System\Windows\Forms\ToolStripComboBoxTests.cs (1)
175[InlineData(FlatStyle.System)]
WinFormsControlsTest (7)
Buttons.cs (1)
16FlatStyle.System
ComboBoxes.Designer.cs (4)
54this.comboBox1.FlatStyle = System.Windows.Forms.FlatStyle.System; 68this.comboBox2.FlatStyle = System.Windows.Forms.FlatStyle.System; 210this.comboBox12.FlatStyle = System.Windows.Forms.FlatStyle.System; 230this.dataBoundComboBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
MultipleControls.Designer.cs (2)
78this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System; 92this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;