15 lines
189 B
C#
15 lines
189 B
C#
namespace WPFluent.Controls;
|
|
|
|
public enum ToastLocation
|
|
{
|
|
Center,
|
|
Left,
|
|
Right,
|
|
TopLeft,
|
|
TopCenter,
|
|
TopRight,
|
|
BottomLeft,
|
|
BottomCenter,
|
|
BottomRight,
|
|
}
|