12 lines
142 B
C#
12 lines
142 B
C#
|
|
namespace WPFluent.Controls;
|
|||
|
|
|
|||
|
|
public enum MessageBoxIcon
|
|||
|
|
{
|
|||
|
|
None,
|
|||
|
|
Information,
|
|||
|
|
Success,
|
|||
|
|
Error,
|
|||
|
|
Warning,
|
|||
|
|
Question,
|
|||
|
|
}
|