Robin 5a57b1011c Added DockPanel basics & updated example
Re-adding content currently broken. Need to add tabs too.
2015-09-19 11:32:11 +01:00

57 lines
771 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
}
public enum DarkDockArea
{
None,
Document,
Left,
Right,
Bottom
}
}