namespace M423project
|
{
|
partial class FormPLCIO
|
{
|
/// <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.dgvPLCIO = new System.Windows.Forms.DataGridView();
|
this.PLCAddr = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.OPCName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.OPCDesc = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.PLCValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.gbPLCIO = new System.Windows.Forms.GroupBox();
|
this.panel1 = new System.Windows.Forms.Panel();
|
this.btnWriteValue = new System.Windows.Forms.Button();
|
this.cbPLCValue = new System.Windows.Forms.CheckBox();
|
this.tbOPCDesc = new System.Windows.Forms.TextBox();
|
this.label3 = new System.Windows.Forms.Label();
|
this.tbOPCName = new System.Windows.Forms.TextBox();
|
this.label2 = new System.Windows.Forms.Label();
|
this.tbPLCAddr = new System.Windows.Forms.TextBox();
|
this.label1 = new System.Windows.Forms.Label();
|
this.btnClose = new System.Windows.Forms.Button();
|
((System.ComponentModel.ISupportInitialize)(this.dgvPLCIO)).BeginInit();
|
this.gbPLCIO.SuspendLayout();
|
this.panel1.SuspendLayout();
|
this.SuspendLayout();
|
//
|
// dgvPLCIO
|
//
|
this.dgvPLCIO.AllowUserToAddRows = false;
|
this.dgvPLCIO.AllowUserToDeleteRows = false;
|
this.dgvPLCIO.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
this.dgvPLCIO.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
this.PLCAddr,
|
this.OPCName,
|
this.OPCDesc,
|
this.PLCValue});
|
this.dgvPLCIO.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.dgvPLCIO.Location = new System.Drawing.Point(2, 16);
|
this.dgvPLCIO.Margin = new System.Windows.Forms.Padding(2);
|
this.dgvPLCIO.Name = "dgvPLCIO";
|
this.dgvPLCIO.RowTemplate.Height = 30;
|
this.dgvPLCIO.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
this.dgvPLCIO.Size = new System.Drawing.Size(796, 536);
|
this.dgvPLCIO.TabIndex = 1;
|
this.dgvPLCIO.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvPLCIO_CellClick);
|
//
|
// PLCAddr
|
//
|
this.PLCAddr.DataPropertyName = "PLCAddr";
|
this.PLCAddr.HeaderText = "地址";
|
this.PLCAddr.Name = "PLCAddr";
|
this.PLCAddr.ReadOnly = true;
|
this.PLCAddr.Width = 150;
|
//
|
// OPCName
|
//
|
this.OPCName.DataPropertyName = "OPCName";
|
this.OPCName.HeaderText = "名称";
|
this.OPCName.Name = "OPCName";
|
this.OPCName.ReadOnly = true;
|
this.OPCName.Width = 200;
|
//
|
// OPCDesc
|
//
|
this.OPCDesc.DataPropertyName = "OPCDesc";
|
this.OPCDesc.HeaderText = "描述";
|
this.OPCDesc.Name = "OPCDesc";
|
this.OPCDesc.ReadOnly = true;
|
this.OPCDesc.Width = 300;
|
//
|
// PLCValue
|
//
|
this.PLCValue.DataPropertyName = "PLCValue";
|
this.PLCValue.HeaderText = "当前值";
|
this.PLCValue.Name = "PLCValue";
|
this.PLCValue.ReadOnly = true;
|
this.PLCValue.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
this.PLCValue.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
//
|
// gbPLCIO
|
//
|
this.gbPLCIO.Controls.Add(this.dgvPLCIO);
|
this.gbPLCIO.Controls.Add(this.panel1);
|
this.gbPLCIO.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.gbPLCIO.Location = new System.Drawing.Point(0, 0);
|
this.gbPLCIO.Margin = new System.Windows.Forms.Padding(2);
|
this.gbPLCIO.Name = "gbPLCIO";
|
this.gbPLCIO.Padding = new System.Windows.Forms.Padding(2);
|
this.gbPLCIO.Size = new System.Drawing.Size(967, 554);
|
this.gbPLCIO.TabIndex = 2;
|
this.gbPLCIO.TabStop = false;
|
this.gbPLCIO.Text = "IO 点位列表";
|
//
|
// panel1
|
//
|
this.panel1.Controls.Add(this.btnWriteValue);
|
this.panel1.Controls.Add(this.cbPLCValue);
|
this.panel1.Controls.Add(this.tbOPCDesc);
|
this.panel1.Controls.Add(this.label3);
|
this.panel1.Controls.Add(this.tbOPCName);
|
this.panel1.Controls.Add(this.label2);
|
this.panel1.Controls.Add(this.tbPLCAddr);
|
this.panel1.Controls.Add(this.label1);
|
this.panel1.Controls.Add(this.btnClose);
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
|
this.panel1.Location = new System.Drawing.Point(798, 16);
|
this.panel1.Margin = new System.Windows.Forms.Padding(2);
|
this.panel1.Name = "panel1";
|
this.panel1.Size = new System.Drawing.Size(167, 536);
|
this.panel1.TabIndex = 2;
|
//
|
// btnWriteValue
|
//
|
this.btnWriteValue.Location = new System.Drawing.Point(11, 228);
|
this.btnWriteValue.Margin = new System.Windows.Forms.Padding(2);
|
this.btnWriteValue.Name = "btnWriteValue";
|
this.btnWriteValue.Size = new System.Drawing.Size(140, 21);
|
this.btnWriteValue.TabIndex = 8;
|
this.btnWriteValue.Text = "写入当前值";
|
this.btnWriteValue.UseVisualStyleBackColor = true;
|
this.btnWriteValue.Click += new System.EventHandler(this.btnWriteValue_Click);
|
//
|
// cbPLCValue
|
//
|
this.cbPLCValue.Appearance = System.Windows.Forms.Appearance.Button;
|
this.cbPLCValue.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
|
this.cbPLCValue.Location = new System.Drawing.Point(11, 181);
|
this.cbPLCValue.Margin = new System.Windows.Forms.Padding(2);
|
this.cbPLCValue.Name = "cbPLCValue";
|
this.cbPLCValue.Size = new System.Drawing.Size(140, 27);
|
this.cbPLCValue.TabIndex = 7;
|
this.cbPLCValue.Text = "当前状态";
|
this.cbPLCValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
this.cbPLCValue.UseVisualStyleBackColor = true;
|
this.cbPLCValue.Click += new System.EventHandler(this.cbPLCValue_Click);
|
//
|
// tbOPCDesc
|
//
|
this.tbOPCDesc.Location = new System.Drawing.Point(11, 133);
|
this.tbOPCDesc.Margin = new System.Windows.Forms.Padding(2);
|
this.tbOPCDesc.Name = "tbOPCDesc";
|
this.tbOPCDesc.ReadOnly = true;
|
this.tbOPCDesc.Size = new System.Drawing.Size(140, 21);
|
this.tbOPCDesc.TabIndex = 6;
|
//
|
// label3
|
//
|
this.label3.AutoSize = true;
|
this.label3.Location = new System.Drawing.Point(16, 117);
|
this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
this.label3.Name = "label3";
|
this.label3.Size = new System.Drawing.Size(29, 12);
|
this.label3.TabIndex = 5;
|
this.label3.Text = "描述";
|
//
|
// tbOPCName
|
//
|
this.tbOPCName.Location = new System.Drawing.Point(11, 80);
|
this.tbOPCName.Margin = new System.Windows.Forms.Padding(2);
|
this.tbOPCName.Name = "tbOPCName";
|
this.tbOPCName.ReadOnly = true;
|
this.tbOPCName.Size = new System.Drawing.Size(140, 21);
|
this.tbOPCName.TabIndex = 4;
|
//
|
// label2
|
//
|
this.label2.AutoSize = true;
|
this.label2.Location = new System.Drawing.Point(11, 64);
|
this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
this.label2.Name = "label2";
|
this.label2.Size = new System.Drawing.Size(29, 12);
|
this.label2.TabIndex = 3;
|
this.label2.Text = "名称";
|
//
|
// tbPLCAddr
|
//
|
this.tbPLCAddr.Location = new System.Drawing.Point(11, 32);
|
this.tbPLCAddr.Margin = new System.Windows.Forms.Padding(2);
|
this.tbPLCAddr.Name = "tbPLCAddr";
|
this.tbPLCAddr.ReadOnly = true;
|
this.tbPLCAddr.Size = new System.Drawing.Size(140, 21);
|
this.tbPLCAddr.TabIndex = 2;
|
//
|
// label1
|
//
|
this.label1.AutoSize = true;
|
this.label1.Location = new System.Drawing.Point(11, 11);
|
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
this.label1.Name = "label1";
|
this.label1.Size = new System.Drawing.Size(29, 12);
|
this.label1.TabIndex = 1;
|
this.label1.Text = "地址";
|
//
|
// btnClose
|
//
|
this.btnClose.Location = new System.Drawing.Point(6, 509);
|
this.btnClose.Margin = new System.Windows.Forms.Padding(2);
|
this.btnClose.Name = "btnClose";
|
this.btnClose.Size = new System.Drawing.Size(145, 21);
|
this.btnClose.TabIndex = 0;
|
this.btnClose.Text = "关闭";
|
this.btnClose.UseVisualStyleBackColor = true;
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
//
|
// FormPLCIO
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.ClientSize = new System.Drawing.Size(967, 554);
|
this.Controls.Add(this.gbPLCIO);
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
this.Margin = new System.Windows.Forms.Padding(2);
|
this.Name = "FormPLCIO";
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
this.Text = "FormPLCIO";
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormPLCIO_FormClosing);
|
this.Load += new System.EventHandler(this.FormPLCIO_Load);
|
((System.ComponentModel.ISupportInitialize)(this.dgvPLCIO)).EndInit();
|
this.gbPLCIO.ResumeLayout(false);
|
this.panel1.ResumeLayout(false);
|
this.panel1.PerformLayout();
|
this.ResumeLayout(false);
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.DataGridView dgvPLCIO;
|
private System.Windows.Forms.GroupBox gbPLCIO;
|
private System.Windows.Forms.Panel panel1;
|
private System.Windows.Forms.Button btnClose;
|
private System.Windows.Forms.CheckBox cbPLCValue;
|
private System.Windows.Forms.TextBox tbOPCDesc;
|
private System.Windows.Forms.Label label3;
|
private System.Windows.Forms.TextBox tbOPCName;
|
private System.Windows.Forms.Label label2;
|
private System.Windows.Forms.TextBox tbPLCAddr;
|
private System.Windows.Forms.Label label1;
|
private System.Windows.Forms.Button btnWriteValue;
|
private System.Windows.Forms.DataGridViewTextBoxColumn PLCAddr;
|
private System.Windows.Forms.DataGridViewTextBoxColumn OPCName;
|
private System.Windows.Forms.DataGridViewTextBoxColumn OPCDesc;
|
private System.Windows.Forms.DataGridViewTextBoxColumn PLCValue;
|
}
|
}
|