------ #### RaUIV4 V4.0.2311.0701 - *.[全新]整合了MyDb、ryControls、MyDb_MySQL等dll文件到RaUI一个项目。 - *.[新增]新增ApkOp类,可以轻松获取APK信息。 - *.[新增]新增JsonExt扩展类,让Json操作更简单。 - *.[新增]新增WebP类,可以支持webp格式的图片。 - *.[改进]ryQuickSQL中的AddField方法改为自动替换已存在的同名值。 - *.[修复]ryQuickSQL中的AddFieldCalc方法无法正常计算的BUG。
61 lines
1.2 KiB
C#
61 lines
1.2 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Windows.Forms;
|
|
#pragma warning disable CS1591 // 缺少对公共可见类型或成员的 XML 注释
|
|
namespace WeifenLuo.WinFormsUI.Docking
|
|
{
|
|
[Flags]
|
|
[Serializable]
|
|
[Editor(typeof(DockAreasEditor), typeof(System.Drawing.Design.UITypeEditor))]
|
|
public enum DockAreas
|
|
{
|
|
Float = 1,
|
|
DockLeft = 2,
|
|
DockRight = 4,
|
|
DockTop = 8,
|
|
DockBottom = 16,
|
|
Document = 32
|
|
}
|
|
|
|
public enum DockState
|
|
{
|
|
Unknown = 0,
|
|
Float = 1,
|
|
DockTopAutoHide = 2,
|
|
DockLeftAutoHide = 3,
|
|
DockBottomAutoHide = 4,
|
|
DockRightAutoHide = 5,
|
|
Document = 6,
|
|
DockTop = 7,
|
|
DockLeft = 8,
|
|
DockBottom = 9,
|
|
DockRight = 10,
|
|
Hidden = 11
|
|
}
|
|
|
|
public enum DockAlignment
|
|
{
|
|
Left,
|
|
Right,
|
|
Top,
|
|
Bottom
|
|
}
|
|
|
|
public enum DocumentStyle
|
|
{
|
|
DockingMdi,
|
|
DockingWindow,
|
|
DockingSdi,
|
|
SystemMdi,
|
|
}
|
|
|
|
/// <summary>
|
|
/// The location to draw the DockPaneStrip for Document style windows.
|
|
/// </summary>
|
|
public enum DocumentTabStripLocation
|
|
{
|
|
Top,
|
|
Bottom
|
|
}
|
|
}
|