mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-03 15:49:26 +03:00
65 lines
881 B
C#
65 lines
881 B
C#
namespace DarkUI.Config
|
|
{
|
|
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
|
|
}
|
|
|
|
public enum DarkDockArea
|
|
{
|
|
None,
|
|
Document,
|
|
Left,
|
|
Right,
|
|
Bottom
|
|
}
|
|
|
|
public enum DarkSplitterType
|
|
{
|
|
Left,
|
|
Right,
|
|
Top,
|
|
Bottom
|
|
}
|
|
}
|