21 lines
254 B
C#
21 lines
254 B
C#
using System;
|
|
|
|
namespace Eugen.ESystem.Windows.Forms
|
|
{
|
|
/// <summary>
|
|
/// Standard MessageBoxEx icons
|
|
/// </summary>
|
|
public enum MessageBoxExIcon
|
|
{
|
|
None,
|
|
Asterisk,
|
|
Error,
|
|
Exclamation,
|
|
Hand,
|
|
Information,
|
|
Question,
|
|
Stop,
|
|
Warning
|
|
}
|
|
}
|