| File: System\Windows\Forms\SystemParameter.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 SystemParameter { /// <summary> /// DropShadow. /// </summary> DropShadow = 0, /// <summary> /// Flat Menu. /// </summary> FlatMenu = 1, /// <summary> /// FontSmoothingContrastMetric. /// </summary> FontSmoothingContrastMetric = 2, /// <summary> /// FontSmoothingTypeMetric. /// </summary> FontSmoothingTypeMetric = 3, /// <summary> /// MenuFadeEnabled. /// </summary> MenuFadeEnabled = 4, /// <summary> /// SelectionFade. /// </summary> SelectionFade = 5, /// <summary> /// ToolTipAnimationMetric. /// </summary> ToolTipAnimationMetric = 6, /// <summary> /// UIEffects. /// </summary> UIEffects = 7, /// <summary> /// CaretWidthMetric. /// </summary> CaretWidthMetric = 8, /// <summary> /// VerticalFocusThicknessMetric. /// </summary> VerticalFocusThicknessMetric = 9, /// <summary> /// HorizontalFocusThicknessMetric. /// </summary> HorizontalFocusThicknessMetric = 10, }