mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-02 07:09:27 +03:00
48 lines
653 B
C#
48 lines
653 B
C#
namespace DarkUI
|
|
{
|
|
public enum DarkButtonStyle
|
|
{
|
|
Normal,
|
|
Flat
|
|
}
|
|
|
|
public enum DarkControlState
|
|
{
|
|
Normal,
|
|
Hover,
|
|
Pressed
|
|
}
|
|
|
|
public enum DarkContentAlignment
|
|
{
|
|
Center,
|
|
Left,
|
|
Right
|
|
}
|
|
|
|
public enum DarkOrientation
|
|
{
|
|
Vertical,
|
|
Horizontal
|
|
}
|
|
|
|
public enum DarkDialogButton
|
|
{
|
|
Ok,
|
|
Close,
|
|
OkCancel,
|
|
YesNo,
|
|
YesNoCancel,
|
|
AbortRetryIgnore,
|
|
RetryCancel
|
|
}
|
|
|
|
public enum DarkMessageBoxIcon
|
|
{
|
|
None,
|
|
Information,
|
|
Warning,
|
|
Error
|
|
}
|
|
}
|