1 namespace SeciUserInterface.Forms
 
    3     partial class RunControlViewer
 
    8         private System.ComponentModel.IContainer components = null;
 
   14         protected override void Dispose(
bool disposing)
 
   16             if (disposing && (components != null))
 
   20             base.Dispose(disposing);
 
   23         #region Windows Form Designer generated code 
   31             this.components = 
new System.ComponentModel.Container();
 
   32             this.dgv1 = 
new System.Windows.Forms.DataGridView();
 
   33             this.colName = 
new System.Windows.Forms.DataGridViewTextBoxColumn();
 
   34             this.colValue = 
new System.Windows.Forms.DataGridViewTextBoxColumn();
 
   35             this.colSetpoint = 
new System.Windows.Forms.DataGridViewTextBoxColumn();
 
   36             this.colRunControl = 
new System.Windows.Forms.DataGridViewCheckBoxColumn();
 
   37             this.colLower = 
new System.Windows.Forms.DataGridViewTextBoxColumn();
 
   38             this.colUpper = 
new System.Windows.Forms.DataGridViewTextBoxColumn();
 
   39             this.colInRange = 
new System.Windows.Forms.DataGridViewTextBoxColumn();
 
   40             this.btnClose = 
new System.Windows.Forms.Button();
 
   41             this.backgroundWorker1 = 
new System.ComponentModel.BackgroundWorker();
 
   42             this.btnSet = 
new System.Windows.Forms.Button();
 
   43             this.timer1 = 
new System.Windows.Forms.Timer(this.components);
 
   44             this.label1 = 
new System.Windows.Forms.Label();
 
   45             ((System.ComponentModel.ISupportInitialize)(this.dgv1)).BeginInit();
 
   50             this.dgv1.AllowUserToAddRows = 
false;
 
   51             this.dgv1.AllowUserToDeleteRows = 
false;
 
   52             this.dgv1.AllowUserToResizeColumns = 
false;
 
   53             this.dgv1.AllowUserToResizeRows = 
false;
 
   54             this.dgv1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
 
   55             | System.Windows.Forms.AnchorStyles.Left) 
 
   56             | System.Windows.Forms.AnchorStyles.Right)));
 
   57             this.dgv1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
 
   58             this.dgv1.Columns.AddRange(
new System.Windows.Forms.DataGridViewColumn[] {
 
   66             this.dgv1.Location = 
new System.Drawing.Point(12, 12);
 
   67             this.dgv1.MultiSelect = 
false;
 
   68             this.dgv1.Name = 
"dgv1";
 
   69             this.dgv1.Size = 
new System.Drawing.Size(658, 329);
 
   70             this.dgv1.TabIndex = 0;
 
   71             this.dgv1.CellDoubleClick += 
new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv1_CellDoubleClick);
 
   75             this.colName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
 
   76             this.colName.HeaderText = 
"Name";
 
   77             this.colName.Name = 
"colName";
 
   78             this.colName.ReadOnly = 
true;
 
   82             this.colValue.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
 
   83             this.colValue.HeaderText = 
"Current Value";
 
   84             this.colValue.Name = 
"colValue";
 
   85             this.colValue.ReadOnly = 
true;
 
   86             this.colValue.Width = 88;
 
   90             this.colSetpoint.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
 
   91             this.colSetpoint.HeaderText = 
"Setpoint";
 
   92             this.colSetpoint.Name = 
"colSetpoint";
 
   93             this.colSetpoint.ReadOnly = 
true;
 
   94             this.colSetpoint.Width = 71;
 
   98             this.colRunControl.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
 
   99             this.colRunControl.HeaderText = 
"Under Run-control";
 
  100             this.colRunControl.Name = 
"colRunControl";
 
  101             this.colRunControl.ReadOnly = 
true;
 
  102             this.colRunControl.Width = 90;
 
  106             this.colLower.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
 
  107             this.colLower.HeaderText = 
"Lower Limit";
 
  108             this.colLower.Name = 
"colLower";
 
  109             this.colLower.ReadOnly = 
true;
 
  110             this.colLower.Width = 79;
 
  114             this.colUpper.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
 
  115             this.colUpper.HeaderText = 
"Upper Limit";
 
  116             this.colUpper.Name = 
"colUpper";
 
  117             this.colUpper.ReadOnly = 
true;
 
  118             this.colUpper.Width = 79;
 
  122             this.colInRange.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
 
  123             this.colInRange.HeaderText = 
"In Range";
 
  124             this.colInRange.Name = 
"colInRange";
 
  125             this.colInRange.ReadOnly = 
true;
 
  126             this.colInRange.Width = 70;
 
  130             this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
 
  131             this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 
  132             this.btnClose.Location = 
new System.Drawing.Point(595, 347);
 
  133             this.btnClose.Name = 
"btnClose";
 
  134             this.btnClose.Size = 
new System.Drawing.Size(75, 23);
 
  135             this.btnClose.TabIndex = 1;
 
  136             this.btnClose.Text = 
"Close";
 
  137             this.btnClose.UseVisualStyleBackColor = 
true;
 
  138             this.btnClose.Click += 
new System.EventHandler(this.btnClose_Click);
 
  142             this.backgroundWorker1.DoWork += 
new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
 
  143             this.backgroundWorker1.RunWorkerCompleted += 
new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
 
  147             this.btnSet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
 
  148             this.btnSet.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 
  149             this.btnSet.Location = 
new System.Drawing.Point(476, 347);
 
  150             this.btnSet.Name = 
"btnSet";
 
  151             this.btnSet.Size = 
new System.Drawing.Size(113, 23);
 
  152             this.btnSet.TabIndex = 2;
 
  153             this.btnSet.Text = 
"Edit Run Control";
 
  154             this.btnSet.UseVisualStyleBackColor = 
true;
 
  155             this.btnSet.Click += 
new System.EventHandler(this.btnSet_Click);
 
  159             this.timer1.Interval = 5000;
 
  160             this.timer1.Tick += 
new System.EventHandler(this.timer1_Tick);
 
  164             this.label1.AutoSize = 
true;
 
  165             this.label1.Location = 
new System.Drawing.Point(12, 352);
 
  166             this.label1.Name = 
"label1";
 
  167             this.label1.Size = 
new System.Drawing.Size(278, 13);
 
  168             this.label1.TabIndex = 3;
 
  169             this.label1.Text = 
"Note: The values on this page update every five seconds";
 
  173             this.AutoScaleDimensions = 
new System.Drawing.SizeF(6F, 13F);
 
  174             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 
  175             this.CancelButton = this.btnClose;
 
  176             this.ClientSize = 
new System.Drawing.Size(682, 382);
 
  177             this.Controls.Add(this.label1);
 
  178             this.Controls.Add(this.btnSet);
 
  179             this.Controls.Add(this.btnClose);
 
  180             this.Controls.Add(this.dgv1);
 
  181             this.Name = 
"RunControlViewer";
 
  182             this.ShowIcon = 
false;
 
  183             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
 
  184             this.Text = 
"Blocks Status - SECI";
 
  185             this.Load += 
new System.EventHandler(this.RunControlViewer_Load);
 
  186             ((System.ComponentModel.ISupportInitialize)(this.dgv1)).EndInit();
 
  187             this.ResumeLayout(
false);
 
  188             this.PerformLayout();
 
  194         private System.Windows.Forms.DataGridView 
dgv1;
 
  197         private System.Windows.Forms.Button 
btnSet;
 
  198         private System.Windows.Forms.Timer 
timer1;
 
  199         private System.Windows.Forms.DataGridViewTextBoxColumn 
colName;
 
  200         private System.Windows.Forms.DataGridViewTextBoxColumn 
colValue;
 
  201         private System.Windows.Forms.DataGridViewTextBoxColumn 
colSetpoint;
 
  203         private System.Windows.Forms.DataGridViewTextBoxColumn 
colLower;
 
  204         private System.Windows.Forms.DataGridViewTextBoxColumn 
colUpper;
 
  205         private System.Windows.Forms.DataGridViewTextBoxColumn 
colInRange;
 
  206         private System.Windows.Forms.Label 
label1;