10 references to Classic
Microsoft.VisualBasic.Forms.Tests (1)
System\Windows\Forms\WindowsFormsApplicationBaseTests.vb (1)
20ColorMode.Should.Be(SystemColorMode.Classic)
System.Windows.Forms (6)
System\Windows\Forms\Application.cs (6)
245/// or its default value <see cref="SystemColorMode.Classic"/>. If it has been set to <see cref="SystemColorMode.System"/>, 250public static SystemColorMode ColorMode => s_colorMode ?? SystemColorMode.Classic; 265/// (<see cref="SystemColorMode.Dark"/>), Classic (light) Mode (<see cref="SystemColorMode.Classic"/>), 327SystemColorMode.Classic => systemColorMode, 393/// or <see cref="SystemColorMode.Classic"/> if the color mode is set to the light, standard color setting. 406: SystemColorMode.Classic;
System.Windows.Forms.Tests (2)
System\Windows\Forms\ApplicationTests.cs (2)
165Application.SetColorMode(SystemColorMode.Classic); 167Assert.Equal(SystemColorMode.Classic, Application.ColorMode);
WinFormsControlsTest (1)
Program.cs (1)
12Application.SetColorMode(SystemColorMode.Classic);