118 lines
4.7 KiB
C#
118 lines
4.7 KiB
C#
namespace AntdUIDemo.Views
|
||
{
|
||
partial class SplitterDemo
|
||
{
|
||
/// <summary>
|
||
/// 必需的设计器变量。
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// 清理所有正在使用的资源。
|
||
/// </summary>
|
||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region 组件设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要修改
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.header1 = new AntdUI.PageHeader();
|
||
this.splitter1 = new AntdUI.Splitter();
|
||
this.button1 = new AntdUI.Button();
|
||
this.button2 = new AntdUI.Button();
|
||
((System.ComponentModel.ISupportInitialize)(this.splitter1)).BeginInit();
|
||
this.splitter1.Panel1.SuspendLayout();
|
||
this.splitter1.Panel2.SuspendLayout();
|
||
this.splitter1.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// header1
|
||
//
|
||
this.header1.Description = "自由切分指定区域。";
|
||
this.header1.DividerShow = true;
|
||
this.header1.Dock = System.Windows.Forms.DockStyle.Top;
|
||
this.header1.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
|
||
this.header1.Location = new System.Drawing.Point(0, 0);
|
||
this.header1.Name = "header1";
|
||
this.header1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 10);
|
||
this.header1.Size = new System.Drawing.Size(750, 74);
|
||
this.header1.TabIndex = 28;
|
||
this.header1.Text = "Splitter 分隔面板";
|
||
this.header1.UseTitleFont = true;
|
||
//
|
||
// splitter1
|
||
//
|
||
this.splitter1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.splitter1.Location = new System.Drawing.Point(0, 74);
|
||
this.splitter1.Name = "splitter1";
|
||
//
|
||
// splitter1.Panel1
|
||
//
|
||
this.splitter1.Panel1.Controls.Add(this.button1);
|
||
//
|
||
// splitter1.Panel2
|
||
//
|
||
this.splitter1.Panel2.Controls.Add(this.button2);
|
||
this.splitter1.Size = new System.Drawing.Size(750, 457);
|
||
this.splitter1.SplitterDistance = 264;
|
||
this.splitter1.SplitterSize = 30;
|
||
this.splitter1.TabIndex = 31;
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Dock = System.Windows.Forms.DockStyle.Top;
|
||
this.button1.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.button1.Location = new System.Drawing.Point(0, 0);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(264, 45);
|
||
this.button1.TabIndex = 0;
|
||
this.button1.Text = "Button";
|
||
this.button1.Type = AntdUI.TTypeMini.Primary;
|
||
//
|
||
// button2
|
||
//
|
||
this.button2.Dock = System.Windows.Forms.DockStyle.Top;
|
||
this.button2.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.button2.Location = new System.Drawing.Point(0, 0);
|
||
this.button2.Name = "button2";
|
||
this.button2.Size = new System.Drawing.Size(482, 45);
|
||
this.button2.TabIndex = 1;
|
||
this.button2.Text = "Button";
|
||
this.button2.Type = AntdUI.TTypeMini.Warn;
|
||
//
|
||
// SplitterDemo
|
||
//
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
||
this.Controls.Add(this.splitter1);
|
||
this.Controls.Add(this.header1);
|
||
this.Name = "SplitterDemo";
|
||
this.Size = new System.Drawing.Size(750, 531);
|
||
this.splitter1.Panel1.ResumeLayout(false);
|
||
this.splitter1.Panel2.ResumeLayout(false);
|
||
((System.ComponentModel.ISupportInitialize)(this.splitter1)).EndInit();
|
||
this.splitter1.ResumeLayout(false);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private AntdUI.PageHeader header1;
|
||
private AntdUI.Splitter splitter1;
|
||
private AntdUI.Button button1;
|
||
private AntdUI.Button button2;
|
||
}
|
||
}
|