namespace Task { partial class FrmTask { /// /// 必要なデザイナ変数です。 /// private System.ComponentModel.IContainer components = null; /// /// 使用中のリソースをすべてクリーンアップします。 /// /// マネージ リソースが破棄される場合 true、破棄されない場合は false です。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows フォーム デザイナで生成されたコード /// /// デザイナ サポートに必要なメソッドです。このメソッドの内容を /// コード エディタで変更しないでください。 /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.GrBxConn = new System.Windows.Forms.GroupBox(); this.btnDisconn = new System.Windows.Forms.Button(); this.btnConn = new System.Windows.Forms.Button(); this.cboParam = new System.Windows.Forms.ComboBox(); this.lblParam = new System.Windows.Forms.Label(); this.GrBxOP = new System.Windows.Forms.GroupBox(); this.dataTask = new System.Windows.Forms.DataGridView(); this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.btnStop = new System.Windows.Forms.Button(); this.btnStart = new System.Windows.Forms.Button(); this.cboStop = new System.Windows.Forms.ComboBox(); this.cboStart = new System.Windows.Forms.ComboBox(); this.btnRefresh = new System.Windows.Forms.Button(); this.btnExit = new System.Windows.Forms.Button(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.GrBxConn.SuspendLayout(); this.GrBxOP.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataTask)).BeginInit(); this.SuspendLayout(); // // GrBxConn // this.GrBxConn.Controls.Add(this.btnDisconn); this.GrBxConn.Controls.Add(this.btnConn); this.GrBxConn.Controls.Add(this.cboParam); this.GrBxConn.Controls.Add(this.lblParam); this.GrBxConn.Location = new System.Drawing.Point(12, 5); this.GrBxConn.Name = "GrBxConn"; this.GrBxConn.Size = new System.Drawing.Size(570, 49); this.GrBxConn.TabIndex = 0; this.GrBxConn.TabStop = false; this.GrBxConn.Text = "Connection"; // // btnDisconn // this.btnDisconn.Location = new System.Drawing.Point(476, 18); this.btnDisconn.Name = "btnDisconn"; this.btnDisconn.Size = new System.Drawing.Size(88, 22); this.btnDisconn.TabIndex = 3; this.btnDisconn.Text = "&Disconnect"; this.btnDisconn.UseVisualStyleBackColor = true; this.btnDisconn.Click += new System.EventHandler(this.btnDisconn_Click); // // btnConn // this.btnConn.Location = new System.Drawing.Point(382, 18); this.btnConn.Name = "btnConn"; this.btnConn.Size = new System.Drawing.Size(88, 22); this.btnConn.TabIndex = 2; this.btnConn.Text = "&Connect"; this.btnConn.UseVisualStyleBackColor = true; this.btnConn.Click += new System.EventHandler(this.btnConn_Click); // // cboParam // this.cboParam.FormattingEnabled = true; this.cboParam.Items.AddRange(new object[] { "Server=192.168.0.1"}); this.cboParam.Location = new System.Drawing.Point(92, 18); this.cboParam.Name = "cboParam"; this.cboParam.Size = new System.Drawing.Size(238, 20); this.cboParam.TabIndex = 1; // // lblParam // this.lblParam.AutoSize = true; this.lblParam.Location = new System.Drawing.Point(6, 21); this.lblParam.Name = "lblParam"; this.lblParam.Size = new System.Drawing.Size(59, 12); this.lblParam.TabIndex = 0; this.lblParam.Text = "Parameter:"; // // GrBxOP // this.GrBxOP.Controls.Add(this.dataTask); this.GrBxOP.Controls.Add(this.btnStop); this.GrBxOP.Controls.Add(this.btnStart); this.GrBxOP.Controls.Add(this.cboStop); this.GrBxOP.Controls.Add(this.cboStart); this.GrBxOP.Location = new System.Drawing.Point(12, 60); this.GrBxOP.Name = "GrBxOP"; this.GrBxOP.Size = new System.Drawing.Size(570, 227); this.GrBxOP.TabIndex = 1; this.GrBxOP.TabStop = false; this.GrBxOP.Text = "Operation"; // // dataTask // this.dataTask.AllowUserToAddRows = false; this.dataTask.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataTask.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.Column1, this.Column2, this.Column3, this.Column4, this.Column5}); this.dataTask.Location = new System.Drawing.Point(6, 18); this.dataTask.MultiSelect = false; this.dataTask.Name = "dataTask"; this.dataTask.RowTemplate.Height = 21; this.dataTask.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dataTask.Size = new System.Drawing.Size(558, 167); this.dataTask.TabIndex = 4; // // Column1 // this.Column1.HeaderText = "Program name"; this.Column1.Name = "Column1"; this.Column1.ReadOnly = true; // // Column2 // this.Column2.HeaderText = "Status"; this.Column2.Name = "Column2"; this.Column2.ReadOnly = true; // // Column3 // this.Column3.HeaderText = "LineNo"; this.Column3.Name = "Column3"; this.Column3.ReadOnly = true; // // Column4 // this.Column4.HeaderText = "CycleTime"; this.Column4.Name = "Column4"; this.Column4.ReadOnly = true; // // Column5 // this.Column5.HeaderText = "Priority"; this.Column5.Name = "Column5"; this.Column5.ReadOnly = true; // // btnStop // this.btnStop.Location = new System.Drawing.Point(504, 191); this.btnStop.Name = "btnStop"; this.btnStop.Size = new System.Drawing.Size(60, 22); this.btnStop.TabIndex = 3; this.btnStop.Text = "Stop"; this.btnStop.UseVisualStyleBackColor = true; this.btnStop.Click += new System.EventHandler(this.btnStop_Click); // // btnStart // this.btnStart.Location = new System.Drawing.Point(207, 191); this.btnStart.Name = "btnStart"; this.btnStart.Size = new System.Drawing.Size(60, 22); this.btnStart.TabIndex = 2; this.btnStart.Text = "Run"; this.btnStart.UseVisualStyleBackColor = true; this.btnStart.Click += new System.EventHandler(this.btnStart_Click); // // cboStop // this.cboStop.FormattingEnabled = true; this.cboStop.Items.AddRange(new object[] { "0 - Default stop", "1 - Instant stop", "2 - Step stop", "3 - Cycle stop", "4 - Initialized stop"}); this.cboStop.Location = new System.Drawing.Point(303, 191); this.cboStop.Name = "cboStop"; this.cboStop.Size = new System.Drawing.Size(195, 20); this.cboStop.TabIndex = 1; // // cboStart // this.cboStart.FormattingEnabled = true; this.cboStart.Items.AddRange(new object[] { "1 - One cycle execution", "2 - Continuous execution", "3 - Step forward"}); this.cboStart.Location = new System.Drawing.Point(6, 191); this.cboStart.Name = "cboStart"; this.cboStart.Size = new System.Drawing.Size(195, 20); this.cboStart.TabIndex = 0; // // btnRefresh // this.btnRefresh.Location = new System.Drawing.Point(20, 293); this.btnRefresh.Name = "btnRefresh"; this.btnRefresh.Size = new System.Drawing.Size(99, 30); this.btnRefresh.TabIndex = 2; this.btnRefresh.Text = "Refresh"; this.btnRefresh.UseVisualStyleBackColor = true; this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click); // // btnExit // this.btnExit.Location = new System.Drawing.Point(477, 293); this.btnExit.Name = "btnExit"; this.btnExit.Size = new System.Drawing.Size(99, 30); this.btnExit.TabIndex = 3; this.btnExit.Text = "Exit"; this.btnExit.UseVisualStyleBackColor = true; this.btnExit.Click += new System.EventHandler(this.btnExit_Click); // // timer1 // this.timer1.Enabled = true; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // FrmTask // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(594, 327); this.Controls.Add(this.btnExit); this.Controls.Add(this.btnRefresh); this.Controls.Add(this.GrBxOP); this.Controls.Add(this.GrBxConn); this.MaximizeBox = false; this.Name = "FrmTask"; this.Text = "Task"; this.Load += new System.EventHandler(this.FrmTask_Load); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmTask_FormClosing); this.GrBxConn.ResumeLayout(false); this.GrBxConn.PerformLayout(); this.GrBxOP.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dataTask)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.GroupBox GrBxConn; private System.Windows.Forms.Button btnDisconn; private System.Windows.Forms.Button btnConn; private System.Windows.Forms.ComboBox cboParam; private System.Windows.Forms.Label lblParam; private System.Windows.Forms.GroupBox GrBxOP; private System.Windows.Forms.Button btnStop; private System.Windows.Forms.Button btnStart; private System.Windows.Forms.ComboBox cboStop; private System.Windows.Forms.ComboBox cboStart; private System.Windows.Forms.Button btnRefresh; private System.Windows.Forms.Button btnExit; private System.Windows.Forms.DataGridView dataTask; private System.Windows.Forms.DataGridViewTextBoxColumn Column1; private System.Windows.Forms.DataGridViewTextBoxColumn Column2; private System.Windows.Forms.DataGridViewTextBoxColumn Column3; private System.Windows.Forms.DataGridViewTextBoxColumn Column4; private System.Windows.Forms.DataGridViewTextBoxColumn Column5; private System.Windows.Forms.Timer timer1; } }