131 lines
6.1 KiB
C#
131 lines
6.1 KiB
C#
namespace HkVisionPro.App
|
||
{
|
||
partial class MainForm
|
||
{
|
||
/// <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 Windows 窗体设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要修改
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
|
||
this.btnLoadSolution = new System.Windows.Forms.Button();
|
||
this.vmRenderControl1 = new VMControls.Winform.Release.VmRenderControl();
|
||
this.txtSolutionAddress = new System.Windows.Forms.TextBox();
|
||
this.btnSelctedSolution = new System.Windows.Forms.Button();
|
||
this.btnExecutSolution = new System.Windows.Forms.Button();
|
||
this.btnSaveSolution = new System.Windows.Forms.Button();
|
||
this.SuspendLayout();
|
||
//
|
||
// btnLoadSolution
|
||
//
|
||
this.btnLoadSolution.Location = new System.Drawing.Point(784, 156);
|
||
this.btnLoadSolution.Name = "btnLoadSolution";
|
||
this.btnLoadSolution.Size = new System.Drawing.Size(127, 38);
|
||
this.btnLoadSolution.TabIndex = 0;
|
||
this.btnLoadSolution.Text = "加载方案";
|
||
this.btnLoadSolution.UseVisualStyleBackColor = true;
|
||
this.btnLoadSolution.Click += new System.EventHandler(this.btnLoadSolution_Click);
|
||
//
|
||
// vmRenderControl1
|
||
//
|
||
this.vmRenderControl1.BackColor = System.Drawing.Color.Black;
|
||
this.vmRenderControl1.CoordinateInfoVisible = true;
|
||
this.vmRenderControl1.ImageSource = null;
|
||
this.vmRenderControl1.Location = new System.Drawing.Point(1, 1);
|
||
this.vmRenderControl1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
||
this.vmRenderControl1.ModuleSource = null;
|
||
this.vmRenderControl1.Name = "vmRenderControl1";
|
||
this.vmRenderControl1.Size = new System.Drawing.Size(776, 742);
|
||
this.vmRenderControl1.TabIndex = 1;
|
||
//
|
||
// txtSolutionAddress
|
||
//
|
||
this.txtSolutionAddress.Location = new System.Drawing.Point(784, 39);
|
||
this.txtSolutionAddress.Name = "txtSolutionAddress";
|
||
this.txtSolutionAddress.Size = new System.Drawing.Size(386, 23);
|
||
this.txtSolutionAddress.TabIndex = 2;
|
||
//
|
||
// btnSelctedSolution
|
||
//
|
||
this.btnSelctedSolution.Location = new System.Drawing.Point(1043, 68);
|
||
this.btnSelctedSolution.Name = "btnSelctedSolution";
|
||
this.btnSelctedSolution.Size = new System.Drawing.Size(127, 38);
|
||
this.btnSelctedSolution.TabIndex = 3;
|
||
this.btnSelctedSolution.Text = "选择文件方案";
|
||
this.btnSelctedSolution.UseVisualStyleBackColor = true;
|
||
this.btnSelctedSolution.Click += new System.EventHandler(this.btnSelctedSolution_Click);
|
||
//
|
||
// btnExecutSolution
|
||
//
|
||
this.btnExecutSolution.Location = new System.Drawing.Point(917, 156);
|
||
this.btnExecutSolution.Name = "btnExecutSolution";
|
||
this.btnExecutSolution.Size = new System.Drawing.Size(127, 38);
|
||
this.btnExecutSolution.TabIndex = 4;
|
||
this.btnExecutSolution.Text = "执行方案";
|
||
this.btnExecutSolution.UseVisualStyleBackColor = true;
|
||
this.btnExecutSolution.Click += new System.EventHandler(this.btnExecutSolution_Click);
|
||
//
|
||
// btnSaveSolution
|
||
//
|
||
this.btnSaveSolution.Location = new System.Drawing.Point(1050, 156);
|
||
this.btnSaveSolution.Name = "btnSaveSolution";
|
||
this.btnSaveSolution.Size = new System.Drawing.Size(127, 38);
|
||
this.btnSaveSolution.TabIndex = 5;
|
||
this.btnSaveSolution.Text = "保存方案";
|
||
this.btnSaveSolution.UseVisualStyleBackColor = true;
|
||
this.btnSaveSolution.Click += new System.EventHandler(this.btnSaveSolution_Click);
|
||
//
|
||
// MainForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(1182, 744);
|
||
this.Controls.Add(this.btnSaveSolution);
|
||
this.Controls.Add(this.btnExecutSolution);
|
||
this.Controls.Add(this.btnSelctedSolution);
|
||
this.Controls.Add(this.txtSolutionAddress);
|
||
this.Controls.Add(this.vmRenderControl1);
|
||
this.Controls.Add(this.btnLoadSolution);
|
||
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||
this.Margin = new System.Windows.Forms.Padding(4);
|
||
this.Name = "MainForm";
|
||
this.Text = "主窗体";
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button btnLoadSolution;
|
||
private VMControls.Winform.Release.VmRenderControl vmRenderControl1;
|
||
private System.Windows.Forms.TextBox txtSolutionAddress;
|
||
private System.Windows.Forms.Button btnSelctedSolution;
|
||
private System.Windows.Forms.Button btnExecutSolution;
|
||
private System.Windows.Forms.Button btnSaveSolution;
|
||
}
|
||
}
|
||
|