-
Notifications
You must be signed in to change notification settings - Fork 1
/
DialogButton.cs
43 lines (37 loc) · 901 Bytes
/
DialogButton.cs
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
namespace wpf_material_dialogs.Enums
{
/// <summary>
/// Enum DialogButton
/// </summary>
public enum DialogButton
{
/// <summary>
/// The abort retry ignore buttons.
/// </summary>
AbortRetryIgnoreButtons,
/// <summary>
/// The ok buttons.
/// </summary>
OkButtons,
/// <summary>
/// The ok cancel buttons.
/// </summary>
OkCancelButtons,
/// <summary>
/// The retry cancel buttons.
/// </summary>
RetryCancelButtons,
/// <summary>
/// The yes no buttons.
/// </summary>
YesNoButtons,
/// <summary>
/// The yes no cancel buttons.
/// </summary>
YesNoCancelButtons,
/// <summary>
/// Allow custom buttons to be used.
/// </summary>
Custom,
}
}