20 lines
393 B
C#
20 lines
393 B
C#
namespace CopaData.FileInspector.GUI.TilingPanels.Models;
|
|
|
|
/// <summary>
|
|
/// Flags for declaring the buttons on a <see cref="TilingHost"/>
|
|
/// </summary>
|
|
[Flags]
|
|
public enum FrameButtons
|
|
{
|
|
None = 0,
|
|
Close = 1 << 0,
|
|
Minimize = 1 << 1,
|
|
Pin = 1 << 2,
|
|
Split = 1 << 3,
|
|
PopOut = 1 << 4,
|
|
Options = 1 << 5,
|
|
Help = 1 << 6,
|
|
|
|
Default = Close | Pin | PopOut
|
|
}
|