| File: System\Windows\Forms\SystemColorMode.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms; public enum SystemColorMode { /// <summary> /// Dark mode for the current context is or should be disabled. /// </summary> Classic = 0, /// <summary> /// The setting for the current system color mode is inherited from the Windows OS. /// </summary> System = 1, /// <summary> /// Dark mode for the current context is enabled. /// </summary> Dark = 2 }