-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathDialogIcon.cs
More file actions
48 lines (47 loc) · 1.14 KB
/
DialogIcon.cs
File metadata and controls
48 lines (47 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
namespace BytecodeApi.Wpf.Dialogs;
/// <summary>
/// Specifies the icon of a <see cref="Dialog" />.
/// </summary>
public enum DialogIcon
{
/// <summary>
/// The dialog is displayed without an icon.
/// </summary>
None,
/// <summary>
/// An asterisk icon is displayed.
/// </summary>
Information,
/// <summary>
/// A warning triangle icon is displayed.
/// </summary>
Warning,
/// <summary>
/// An error icon is displayed.
/// </summary>
Error,
/// <summary>
/// A shield icon is displayed.
/// </summary>
Shield,
/// <summary>
/// A shield icon with a blue background bar is displayed.
/// </summary>
ShieldBlueBar,
/// <summary>
/// A shield icon with a gray background bar is displayed.
/// </summary>
ShieldGrayBar,
/// <summary>
/// A warning shield icon with a yellow background bar is displayed.
/// </summary>
ShieldWarningYellowBar,
/// <summary>
/// An error shield icon with a red background bar is displayed.
/// </summary>
ShieldErrorRedBar,
/// <summary>
/// A successful shield icon with a green background bar is displayed.
/// </summary>
ShieldSuccessGreenBar
}