11 lines
174 B
C#
11 lines
174 B
C#
namespace WPFluent.Controls;
|
|
|
|
public enum MessageBoxSymbolGlyph
|
|
{
|
|
Info = 0xe946,
|
|
Error = 0xe783,
|
|
Warning = 0xe7ba,
|
|
Question = 0xe9ce,
|
|
None = 0x2007,
|
|
}
|