19 lines
242 B
C#
19 lines
242 B
C#
using System;
|
|
|
|
namespace Utils.MessageBoxExLib
|
|
{
|
|
/// <summary>
|
|
/// Standard MessageBoxEx buttons
|
|
/// </summary>
|
|
public enum MessageBoxExButtons
|
|
{
|
|
Ok = 0,
|
|
Cancel = 1,
|
|
Yes = 2,
|
|
No = 4,
|
|
Abort = 8,
|
|
Retry = 16,
|
|
Ignore = 32
|
|
}
|
|
}
|