namespace LB_SmartVision.Forms.Pages.ProcessPage
|
{
|
partial class ProcessControl
|
{
|
/// <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()
|
{
|
toolStrip1 = new ToolStrip();
|
lblTitle = new ToolStripLabel();
|
btnRun = new ToolStripButton();
|
btnCircleRun = new ToolStripButton();
|
panel1 = new Panel();
|
tableLayoutPanel1 = new TableLayoutPanel();
|
tableLayoutPanel2 = new TableLayoutPanel();
|
label1 = new Label();
|
toolStrip1.SuspendLayout();
|
tableLayoutPanel1.SuspendLayout();
|
tableLayoutPanel2.SuspendLayout();
|
SuspendLayout();
|
//
|
// toolStrip1
|
//
|
toolStrip1.BackColor = Color.FromArgb(32, 41, 50);
|
toolStrip1.Items.AddRange(new ToolStripItem[] { lblTitle, btnRun, btnCircleRun });
|
toolStrip1.Location = new Point(0, 0);
|
toolStrip1.Name = "toolStrip1";
|
toolStrip1.Size = new Size(360, 25);
|
toolStrip1.TabIndex = 0;
|
toolStrip1.Text = "toolStrip1";
|
//
|
// lblTitle
|
//
|
lblTitle.BackColor = SystemColors.ActiveCaptionText;
|
lblTitle.Name = "lblTitle";
|
lblTitle.Size = new Size(56, 22);
|
lblTitle.Text = "流程名称";
|
//
|
// btnRun
|
//
|
btnRun.ImageTransparentColor = Color.Magenta;
|
btnRun.Name = "btnRun";
|
btnRun.Size = new Size(60, 22);
|
btnRun.Text = "单次运行";
|
btnRun.ToolTipText = "单次运行";
|
btnRun.Click += btnRun_Click;
|
//
|
// btnCircleRun
|
//
|
btnCircleRun.ImageTransparentColor = Color.Magenta;
|
btnCircleRun.Name = "btnCircleRun";
|
btnCircleRun.Size = new Size(60, 22);
|
btnCircleRun.Text = "连续运行";
|
btnCircleRun.ToolTipText = "连续";
|
btnCircleRun.Click += btnCircleRun_Click;
|
//
|
// panel1
|
//
|
panel1.BackColor = Color.FromArgb(32, 41, 50);
|
panel1.Dock = DockStyle.Fill;
|
panel1.Location = new Point(3, 3);
|
panel1.Name = "panel1";
|
panel1.Size = new Size(354, 187);
|
panel1.TabIndex = 1;
|
//
|
// tableLayoutPanel1
|
//
|
tableLayoutPanel1.BackColor = Color.FromArgb(32, 41, 50);
|
tableLayoutPanel1.ColumnCount = 1;
|
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
|
tableLayoutPanel1.Controls.Add(panel1, 0, 0);
|
tableLayoutPanel1.Controls.Add(tableLayoutPanel2, 0, 1);
|
tableLayoutPanel1.Dock = DockStyle.Fill;
|
tableLayoutPanel1.Location = new Point(0, 25);
|
tableLayoutPanel1.Name = "tableLayoutPanel1";
|
tableLayoutPanel1.RowCount = 2;
|
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 22F));
|
tableLayoutPanel1.Size = new Size(360, 215);
|
tableLayoutPanel1.TabIndex = 2;
|
//
|
// tableLayoutPanel2
|
//
|
tableLayoutPanel2.BackColor = Color.FromArgb(32, 41, 50);
|
tableLayoutPanel2.ColumnCount = 3;
|
tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.3333321F));
|
tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.3333321F));
|
tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.3333321F));
|
tableLayoutPanel2.Controls.Add(label1, 0, 0);
|
tableLayoutPanel2.Dock = DockStyle.Fill;
|
tableLayoutPanel2.Location = new Point(3, 196);
|
tableLayoutPanel2.Name = "tableLayoutPanel2";
|
tableLayoutPanel2.RowCount = 1;
|
tableLayoutPanel2.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
|
tableLayoutPanel2.Size = new Size(354, 16);
|
tableLayoutPanel2.TabIndex = 2;
|
//
|
// label1
|
//
|
label1.AutoSize = true;
|
label1.BackColor = Color.FromArgb(32, 41, 50);
|
label1.Dock = DockStyle.Fill;
|
label1.Location = new Point(3, 0);
|
label1.Name = "label1";
|
label1.Size = new Size(112, 16);
|
label1.TabIndex = 0;
|
label1.Text = "总数:0";
|
label1.DoubleClick += lblCount_DoubleClick;
|
label1.MouseHover += lblCount_MouseHover;
|
//
|
// ProcessControl
|
//
|
AutoScaleDimensions = new SizeF(96F, 96F);
|
AutoScaleMode = AutoScaleMode.Dpi;
|
BackColor = SystemColors.Control;
|
Controls.Add(tableLayoutPanel1);
|
Controls.Add(toolStrip1);
|
ForeColor = SystemColors.Control;
|
Name = "ProcessControl";
|
Size = new Size(360, 240);
|
Load += ProcessControl_Load;
|
toolStrip1.ResumeLayout(false);
|
toolStrip1.PerformLayout();
|
tableLayoutPanel1.ResumeLayout(false);
|
tableLayoutPanel2.ResumeLayout(false);
|
tableLayoutPanel2.PerformLayout();
|
ResumeLayout(false);
|
PerformLayout();
|
}
|
|
#endregion
|
|
private ToolStrip toolStrip1;
|
private ToolStripButton btnRun;
|
private ToolStripLabel lblTitle;
|
private Panel panel1;
|
private TableLayoutPanel tableLayoutPanel1;
|
private TableLayoutPanel tableLayoutPanel2;
|
private Label label1;
|
private ToolStripButton btnCircleRun;
|
}
|
}
|