SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
RunControlViewer.Designer.cs
Go to the documentation of this file.
1 namespace SeciUserInterface.Forms
2 {
3  partial class RunControlViewer
4  {
8  private System.ComponentModel.IContainer components = null;
9 
14  protected override void Dispose(bool disposing)
15  {
16  if (disposing && (components != null))
17  {
18  components.Dispose();
19  }
20  base.Dispose(disposing);
21  }
22 
23  #region Windows Form Designer generated code
24 
29  private void InitializeComponent()
30  {
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();
46  this.SuspendLayout();
47  //
48  // dgv1
49  //
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[] {
59  this.colName,
60  this.colValue,
61  this.colSetpoint,
62  this.colRunControl,
63  this.colLower,
64  this.colUpper,
65  this.colInRange});
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);
72  //
73  // colName
74  //
75  this.colName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
76  this.colName.HeaderText = "Name";
77  this.colName.Name = "colName";
78  this.colName.ReadOnly = true;
79  //
80  // colValue
81  //
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;
87  //
88  // colSetpoint
89  //
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;
95  //
96  // colRunControl
97  //
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;
103  //
104  // colLower
105  //
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;
111  //
112  // colUpper
113  //
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;
119  //
120  // colInRange
121  //
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;
127  //
128  // btnClose
129  //
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);
139  //
140  // backgroundWorker1
141  //
142  this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
143  this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
144  //
145  // btnSet
146  //
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);
156  //
157  // timer1
158  //
159  this.timer1.Interval = 5000;
160  this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
161  //
162  // label1
163  //
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";
170  //
171  // RunControlViewer
172  //
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();
189 
190  }
191 
192  #endregion
193 
194  private System.Windows.Forms.DataGridView dgv1;
195  private System.Windows.Forms.Button btnClose;
196  private System.ComponentModel.BackgroundWorker backgroundWorker1;
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;
202  private System.Windows.Forms.DataGridViewCheckBoxColumn colRunControl;
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;
207  }
208 }
System.Windows.Forms.DataGridViewTextBoxColumn colInRange
System.Windows.Forms.DataGridViewTextBoxColumn colUpper
override void Dispose(bool disposing)
Clean up any resources being used.
System.Windows.Forms.DataGridViewCheckBoxColumn colRunControl
System.ComponentModel.BackgroundWorker backgroundWorker1
System.Windows.Forms.DataGridViewTextBoxColumn colLower
System.Windows.Forms.DataGridViewTextBoxColumn colValue
void InitializeComponent()
Required method for Designer support - do not modify the contents of this method with the code editor...
System.Windows.Forms.DataGridViewTextBoxColumn colSetpoint
System.Windows.Forms.DataGridViewTextBoxColumn colName