195 lines
9.1 KiB
C#
195 lines
9.1 KiB
C#
namespace CowainHmi
|
|
{
|
|
partial class DlgAxisPosData
|
|
{
|
|
/// <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()
|
|
{
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
this.dgvAxisPos = new System.Windows.Forms.DataGridView();
|
|
this.PosName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.SetPos = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.SetVel = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.InPos = new System.Windows.Forms.DataGridViewImageColumn();
|
|
this.SafeLock = new System.Windows.Forms.DataGridViewImageColumn();
|
|
this.Teach = new System.Windows.Forms.DataGridViewButtonColumn();
|
|
this.Goto = new System.Windows.Forms.DataGridViewButtonColumn();
|
|
this.Edit = new System.Windows.Forms.DataGridViewButtonColumn();
|
|
this.Safe = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvAxisPos)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dgvAxisPos
|
|
//
|
|
this.dgvAxisPos.AllowUserToAddRows = false;
|
|
this.dgvAxisPos.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.dgvAxisPos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvAxisPos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.PosName,
|
|
this.SetPos,
|
|
this.SetVel,
|
|
this.InPos,
|
|
this.SafeLock,
|
|
this.Teach,
|
|
this.Goto,
|
|
this.Edit,
|
|
this.Safe});
|
|
this.dgvAxisPos.Location = new System.Drawing.Point(0, 0);
|
|
this.dgvAxisPos.Margin = new System.Windows.Forms.Padding(2);
|
|
this.dgvAxisPos.Name = "dgvAxisPos";
|
|
this.dgvAxisPos.RowHeadersWidth = 51;
|
|
this.dgvAxisPos.RowTemplate.Height = 35;
|
|
this.dgvAxisPos.Size = new System.Drawing.Size(887, 434);
|
|
this.dgvAxisPos.TabIndex = 0;
|
|
this.dgvAxisPos.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvAxisPos_CellClick);
|
|
this.dgvAxisPos.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dgvAxisPos_CellFormatting);
|
|
this.dgvAxisPos.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvAxisPos_RowPostPaint);
|
|
//
|
|
// PosName
|
|
//
|
|
this.PosName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.PosName.DataPropertyName = "PosName";
|
|
this.PosName.HeaderText = "点位名称";
|
|
this.PosName.MinimumWidth = 100;
|
|
this.PosName.Name = "PosName";
|
|
this.PosName.ReadOnly = true;
|
|
//
|
|
// SetPos
|
|
//
|
|
this.SetPos.DataPropertyName = "SetPos";
|
|
dataGridViewCellStyle1.NullValue = null;
|
|
this.SetPos.DefaultCellStyle = dataGridViewCellStyle1;
|
|
this.SetPos.HeaderText = "目标位置";
|
|
this.SetPos.MinimumWidth = 6;
|
|
this.SetPos.Name = "SetPos";
|
|
this.SetPos.ReadOnly = true;
|
|
this.SetPos.Width = 90;
|
|
//
|
|
// SetVel
|
|
//
|
|
this.SetVel.DataPropertyName = "SetVel";
|
|
this.SetVel.HeaderText = "设置速度";
|
|
this.SetVel.MinimumWidth = 6;
|
|
this.SetVel.Name = "SetVel";
|
|
this.SetVel.ReadOnly = true;
|
|
this.SetVel.Width = 90;
|
|
//
|
|
// InPos
|
|
//
|
|
this.InPos.DataPropertyName = "InPos";
|
|
this.InPos.HeaderText = "到位";
|
|
this.InPos.MinimumWidth = 6;
|
|
this.InPos.Name = "InPos";
|
|
this.InPos.ReadOnly = true;
|
|
this.InPos.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.InPos.Width = 60;
|
|
//
|
|
// SafeLock
|
|
//
|
|
this.SafeLock.DataPropertyName = "SafeLock";
|
|
this.SafeLock.HeaderText = "安全信号";
|
|
this.SafeLock.Name = "SafeLock";
|
|
this.SafeLock.ReadOnly = true;
|
|
this.SafeLock.Width = 80;
|
|
//
|
|
// Teach
|
|
//
|
|
this.Teach.DataPropertyName = "Teach";
|
|
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
dataGridViewCellStyle2.NullValue = "示教";
|
|
dataGridViewCellStyle2.Padding = new System.Windows.Forms.Padding(4);
|
|
this.Teach.DefaultCellStyle = dataGridViewCellStyle2;
|
|
this.Teach.HeaderText = "示教";
|
|
this.Teach.MinimumWidth = 6;
|
|
this.Teach.Name = "Teach";
|
|
//
|
|
// Goto
|
|
//
|
|
this.Goto.DataPropertyName = "Goto";
|
|
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
dataGridViewCellStyle3.NullValue = "Goto";
|
|
dataGridViewCellStyle3.Padding = new System.Windows.Forms.Padding(4);
|
|
this.Goto.DefaultCellStyle = dataGridViewCellStyle3;
|
|
this.Goto.HeaderText = "定位";
|
|
this.Goto.MinimumWidth = 6;
|
|
this.Goto.Name = "Goto";
|
|
//
|
|
// Edit
|
|
//
|
|
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
dataGridViewCellStyle4.NullValue = "修改";
|
|
dataGridViewCellStyle4.Padding = new System.Windows.Forms.Padding(4);
|
|
this.Edit.DefaultCellStyle = dataGridViewCellStyle4;
|
|
this.Edit.HeaderText = "修改";
|
|
this.Edit.Name = "Edit";
|
|
//
|
|
// Safe
|
|
//
|
|
this.Safe.DataPropertyName = "Safe";
|
|
this.Safe.HeaderText = "安全解锁";
|
|
this.Safe.MinimumWidth = 6;
|
|
this.Safe.Name = "Safe";
|
|
this.Safe.Width = 80;
|
|
//
|
|
// DlgAxisPosData
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(888, 433);
|
|
this.Controls.Add(this.dgvAxisPos);
|
|
this.Margin = new System.Windows.Forms.Padding(2);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(754, 408);
|
|
this.Name = "DlgAxisPosData";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "轴点位设置";
|
|
this.TopMost = true;
|
|
this.Load += new System.EventHandler(this.DlgAxisPosData_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvAxisPos)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dgvAxisPos;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn PosName;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn SetPos;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn SetVel;
|
|
private System.Windows.Forms.DataGridViewImageColumn InPos;
|
|
private System.Windows.Forms.DataGridViewImageColumn SafeLock;
|
|
private System.Windows.Forms.DataGridViewButtonColumn Teach;
|
|
private System.Windows.Forms.DataGridViewButtonColumn Goto;
|
|
private System.Windows.Forms.DataGridViewButtonColumn Edit;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn Safe;
|
|
}
|
|
} |