11 instantiations of TaskDialogIcon
System.Windows.Forms (10)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogIcon.cs (10)
37public static readonly TaskDialogIcon None = new(TaskDialogStandardIcon.None); 43public static readonly TaskDialogIcon Information = new(TaskDialogStandardIcon.Information); 49public static readonly TaskDialogIcon Warning = new(TaskDialogStandardIcon.Warning); 55public static readonly TaskDialogIcon Error = new(TaskDialogStandardIcon.Error); 61public static readonly TaskDialogIcon Shield = new(TaskDialogStandardIcon.Shield); 67public static readonly TaskDialogIcon ShieldBlueBar = new(TaskDialogStandardIcon.ShieldBlueBar); 73public static readonly TaskDialogIcon ShieldGrayBar = new(TaskDialogStandardIcon.ShieldGrayBar); 79public static readonly TaskDialogIcon ShieldWarningYellowBar = new(TaskDialogStandardIcon.ShieldWarningYellowBar); 85public static readonly TaskDialogIcon ShieldErrorRedBar = new(TaskDialogStandardIcon.ShieldErrorRedBar); 91public static readonly TaskDialogIcon ShieldSuccessGreenBar = new(TaskDialogStandardIcon.ShieldSuccessGreenBar);
WinFormsControlsTest (1)
TaskDialogSamples.cs (1)
206Icon = new TaskDialogIcon(Icon),
41 references to TaskDialogIcon
System.Windows.Forms (35)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogFootnote.cs (2)
12private TaskDialogIcon? _icon; 106public unsafe TaskDialogIcon? Icon
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogIcon.cs (29)
17/// stored in static fields of class <see cref="TaskDialogIcon"/>, and custom icons 34/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 37public static readonly TaskDialogIcon None = new(TaskDialogStandardIcon.None); 40/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 43public static readonly TaskDialogIcon Information = new(TaskDialogStandardIcon.Information); 46/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 49public static readonly TaskDialogIcon Warning = new(TaskDialogStandardIcon.Warning); 52/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 55public static readonly TaskDialogIcon Error = new(TaskDialogStandardIcon.Error); 58/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 61public static readonly TaskDialogIcon Shield = new(TaskDialogStandardIcon.Shield); 64/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 67public static readonly TaskDialogIcon ShieldBlueBar = new(TaskDialogStandardIcon.ShieldBlueBar); 70/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 73public static readonly TaskDialogIcon ShieldGrayBar = new(TaskDialogStandardIcon.ShieldGrayBar); 76/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 79public static readonly TaskDialogIcon ShieldWarningYellowBar = new(TaskDialogStandardIcon.ShieldWarningYellowBar); 82/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 85public static readonly TaskDialogIcon ShieldErrorRedBar = new(TaskDialogStandardIcon.ShieldErrorRedBar); 88/// Gets a standard <see cref="TaskDialogIcon"/> instance where the task dialog 91public static readonly TaskDialogIcon ShieldSuccessGreenBar = new(TaskDialogStandardIcon.ShieldSuccessGreenBar); 99/// Initializes a new instance of the <see cref="TaskDialogIcon"/> class from an 106/// The <see cref="Icon"/> instance from which this <see cref="TaskDialogIcon"/> 117/// Initializes a new instance of the <see cref="TaskDialogIcon"/> class from an 124/// The <see cref="Icon"/> instance from which this <see cref="TaskDialogIcon"/> 135/// Initializes a new instance of the <see cref="TaskDialogIcon"/> class from an 165/// Releases all resources used by this <see cref="TaskDialogIcon"/>. 174/// <see cref="TaskDialogIcon"/> instance. 177/// This <see cref="TaskDialogIcon"/> instance was not created using a
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (4)
50private TaskDialogIcon? _icon; 386public unsafe TaskDialogIcon? Icon 638GetMainIconValue(TaskDialogIcon? icon) 663GetFooterIconValue(TaskDialogIcon? icon)
WinFormsControlsTest (6)
TaskDialogSamples.cs (6)
81Icon = TaskDialogIcon.Warning, 96Icon = TaskDialogIcon.Warning, 263Icon = TaskDialogIcon.ShieldWarningYellowBar, 292Icon = TaskDialogIcon.Information, 325Icon = TaskDialogIcon.ShieldSuccessGreenBar, 420Icon = TaskDialogIcon.ShieldSuccessGreenBar,