WinFormTools/WinformGeneralDeveloperFrame/FrmShowForm.Designer.cs

91 lines
3.8 KiB
C#
Raw Normal View History

2021-04-13 17:46:18 +08:00

namespace WinformGeneralDeveloperFrame
{
partial class FrmShowForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
2021-04-17 15:40:26 +08:00
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
2021-04-13 17:46:18 +08:00
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
this.SuspendLayout();
//
// panelControl1
//
this.panelControl1.Controls.Add(this.labelControl1);
this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
this.panelControl1.Location = new System.Drawing.Point(0, 0);
2023-05-05 18:07:22 +08:00
this.panelControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
2021-04-13 17:46:18 +08:00
this.panelControl1.Name = "panelControl1";
2023-05-05 18:07:22 +08:00
this.panelControl1.Size = new System.Drawing.Size(1096, 36);
2021-04-13 17:46:18 +08:00
this.panelControl1.TabIndex = 0;
//
// labelControl1
//
this.labelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelControl1.Location = new System.Drawing.Point(2, 2);
2023-05-05 18:07:22 +08:00
this.labelControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
2021-04-13 17:46:18 +08:00
this.labelControl1.Name = "labelControl1";
2023-05-05 18:07:22 +08:00
this.labelControl1.Size = new System.Drawing.Size(0, 18);
2021-04-13 17:46:18 +08:00
this.labelControl1.TabIndex = 0;
//
2021-04-17 15:40:26 +08:00
// flowLayoutPanel1
2021-04-13 17:46:18 +08:00
//
2021-04-17 15:40:26 +08:00
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
2023-05-05 18:07:22 +08:00
this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 36);
this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
2021-04-17 15:40:26 +08:00
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
2023-05-05 18:07:22 +08:00
this.flowLayoutPanel1.Size = new System.Drawing.Size(1096, 763);
2021-04-17 15:40:26 +08:00
this.flowLayoutPanel1.TabIndex = 1;
2021-04-13 17:46:18 +08:00
//
// FrmShowForm
//
2023-05-05 18:07:22 +08:00
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F);
2021-04-13 17:46:18 +08:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2023-05-05 18:07:22 +08:00
this.ClientSize = new System.Drawing.Size(1096, 799);
2021-04-17 15:40:26 +08:00
this.Controls.Add(this.flowLayoutPanel1);
2021-04-13 17:46:18 +08:00
this.Controls.Add(this.panelControl1);
2023-05-05 18:07:22 +08:00
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
2021-04-13 17:46:18 +08:00
this.Name = "FrmShowForm";
this.Text = "ShowForm";
2021-04-17 15:40:26 +08:00
this.Load += new System.EventHandler(this.FrmShowForm_Load);
2021-04-13 17:46:18 +08:00
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
this.panelControl1.ResumeLayout(false);
this.panelControl1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private DevExpress.XtraEditors.PanelControl panelControl1;
private DevExpress.XtraEditors.LabelControl labelControl1;
2021-04-17 15:40:26 +08:00
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
2021-04-13 17:46:18 +08:00
}
}