File: System\Windows\Forms\ToolTip\ToolTipIcon.cs | Web Access |
Project: src\src\System.Windows.Forms\src\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 ToolTipIcon { /// <summary> /// No Icon. /// </summary> None = 0, /// <summary> /// A Information Icon. /// </summary> Info = 1, /// <summary> /// A Warning Icon. /// </summary> Warning = 2, /// <summary> /// A Error Icon. /// </summary> Error = 3 } |