SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
SetVIProperties.Designer.cs
Go to the documentation of this file.
1 namespace SeciUserInterface.Dialogs.VIs
2 {
3  partial class SetVIProperties
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  System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
32  this.label1 = new System.Windows.Forms.Label();
33  this.dataGridView1 = new System.Windows.Forms.DataGridView();
34  this.colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
35  this.colStart = new System.Windows.Forms.DataGridViewCheckBoxColumn();
36  this.colVisible = new System.Windows.Forms.DataGridViewCheckBoxColumn();
37  this.colDelayAfter = new System.Windows.Forms.DataGridViewComboBoxColumn();
38  this.colIndex = new System.Windows.Forms.DataGridViewTextBoxColumn();
39  this.btnCancel = new System.Windows.Forms.Button();
40  this.btnOK = new System.Windows.Forms.Button();
41  this.btnUp = new System.Windows.Forms.Button();
42  this.btnDown = new System.Windows.Forms.Button();
43  this.label2 = new System.Windows.Forms.Label();
44  this.label3 = new System.Windows.Forms.Label();
45  ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
46  this.SuspendLayout();
47  //
48  // label1
49  //
50  this.label1.AutoSize = true;
51  this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
52  this.label1.Location = new System.Drawing.Point(12, 9);
53  this.label1.Name = "label1";
54  this.label1.Size = new System.Drawing.Size(112, 16);
55  this.label1.TabIndex = 0;
56  this.label1.Text = "Properties of VI\'s:";
57  //
58  // dataGridView1
59  //
60  this.dataGridView1.AllowUserToAddRows = false;
61  this.dataGridView1.AllowUserToDeleteRows = false;
62  this.dataGridView1.AllowUserToResizeColumns = false;
63  this.dataGridView1.AllowUserToResizeRows = false;
64  this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
65  this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
66  this.colName,
67  this.colStart,
68  this.colVisible,
69  this.colDelayAfter,
70  this.colIndex});
71  this.dataGridView1.Location = new System.Drawing.Point(12, 28);
72  this.dataGridView1.Name = "dataGridView1";
73  this.dataGridView1.Size = new System.Drawing.Size(552, 381);
74  this.dataGridView1.TabIndex = 1;
75  this.dataGridView1.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView1_CellValidating);
76  //
77  // colName
78  //
79  this.colName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
80  this.colName.HeaderText = "VI Name";
81  this.colName.Name = "colName";
82  this.colName.ReadOnly = true;
83  //
84  // colStart
85  //
86  this.colStart.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
87  this.colStart.HeaderText = "Run when Loaded";
88  this.colStart.Name = "colStart";
89  this.colStart.Width = 91;
90  //
91  // colVisible
92  //
93  this.colVisible.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
94  this.colVisible.HeaderText = "Visible";
95  this.colVisible.Name = "colVisible";
96  this.colVisible.Width = 43;
97  //
98  // colDelayAfter
99  //
100  this.colDelayAfter.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
101  dataGridViewCellStyle1.NullValue = "0";
102  this.colDelayAfter.DefaultCellStyle = dataGridViewCellStyle1;
103  this.colDelayAfter.HeaderText = "Delay After Loading (s)";
104  this.colDelayAfter.Items.AddRange(new object[] {
105  "0",
106  "1",
107  "2",
108  "3",
109  "4",
110  "5",
111  "6",
112  "7",
113  "8",
114  "9",
115  "10",
116  "11",
117  "12",
118  "13",
119  "14",
120  "15",
121  "16",
122  "17",
123  "18",
124  "19",
125  "20",
126  "21",
127  "22",
128  "23",
129  "24",
130  "25",
131  "26",
132  "27",
133  "28",
134  "29",
135  "30"});
136  this.colDelayAfter.Name = "colDelayAfter";
137  this.colDelayAfter.Resizable = System.Windows.Forms.DataGridViewTriState.True;
138  this.colDelayAfter.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
139  this.colDelayAfter.ToolTipText = "The delay in seconds, which SECI will wait for after this VI is loaded";
140  this.colDelayAfter.Width = 115;
141  //
142  // colIndex
143  //
144  this.colIndex.HeaderText = "Index";
145  this.colIndex.Name = "colIndex";
146  this.colIndex.ReadOnly = true;
147  this.colIndex.Visible = false;
148  //
149  // btnCancel
150  //
151  this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
152  this.btnCancel.Location = new System.Drawing.Point(570, 426);
153  this.btnCancel.Name = "btnCancel";
154  this.btnCancel.Size = new System.Drawing.Size(75, 23);
155  this.btnCancel.TabIndex = 2;
156  this.btnCancel.Text = "Cancel";
157  this.btnCancel.UseVisualStyleBackColor = true;
158  this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
159  //
160  // btnOK
161  //
162  this.btnOK.Location = new System.Drawing.Point(570, 397);
163  this.btnOK.Name = "btnOK";
164  this.btnOK.Size = new System.Drawing.Size(75, 23);
165  this.btnOK.TabIndex = 3;
166  this.btnOK.Text = "OK";
167  this.btnOK.UseVisualStyleBackColor = true;
168  this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
169  //
170  // btnUp
171  //
172  this.btnUp.Location = new System.Drawing.Point(570, 46);
173  this.btnUp.Name = "btnUp";
174  this.btnUp.Size = new System.Drawing.Size(73, 23);
175  this.btnUp.TabIndex = 4;
176  this.btnUp.Text = "Move Up";
177  this.btnUp.UseVisualStyleBackColor = true;
178  this.btnUp.Click += new System.EventHandler(this.btnUp_Click);
179  //
180  // btnDown
181  //
182  this.btnDown.Location = new System.Drawing.Point(570, 75);
183  this.btnDown.Name = "btnDown";
184  this.btnDown.Size = new System.Drawing.Size(73, 23);
185  this.btnDown.TabIndex = 5;
186  this.btnDown.Text = "Move Down";
187  this.btnDown.UseVisualStyleBackColor = true;
188  this.btnDown.Click += new System.EventHandler(this.btnDown_Click);
189  //
190  // label2
191  //
192  this.label2.AutoSize = true;
193  this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
194  this.label2.Location = new System.Drawing.Point(12, 433);
195  this.label2.Name = "label2";
196  this.label2.Size = new System.Drawing.Size(277, 16);
197  this.label2.TabIndex = 6;
198  this.label2.Text = "NOTE: Sub-configuration VIs are NOT shown.";
199  //
200  // label3
201  //
202  this.label3.AutoSize = true;
203  this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
204  this.label3.Location = new System.Drawing.Point(12, 412);
205  this.label3.Name = "label3";
206  this.label3.Size = new System.Drawing.Size(231, 16);
207  this.label3.TabIndex = 7;
208  this.label3.Text = "Start-up Order runs from top to bottom.";
209  //
210  // SetVIProperties
211  //
212  this.AcceptButton = this.btnOK;
213  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
214  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
215  this.CancelButton = this.btnCancel;
216  this.ClientSize = new System.Drawing.Size(657, 458);
217  this.ControlBox = false;
218  this.Controls.Add(this.label3);
219  this.Controls.Add(this.label2);
220  this.Controls.Add(this.btnDown);
221  this.Controls.Add(this.btnUp);
222  this.Controls.Add(this.btnOK);
223  this.Controls.Add(this.btnCancel);
224  this.Controls.Add(this.dataGridView1);
225  this.Controls.Add(this.label1);
226  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
227  this.Name = "SetVIProperties";
228  this.ShowInTaskbar = false;
229  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
230  this.Text = "Set VI Properties - SECI";
231  this.Load += new System.EventHandler(this.SetVIProperties_Load);
232  ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
233  this.ResumeLayout(false);
234  this.PerformLayout();
235 
236  }
237 
238  #endregion
239 
240  private System.Windows.Forms.Label label1;
241  private System.Windows.Forms.DataGridView dataGridView1;
242  private System.Windows.Forms.Button btnCancel;
243  private System.Windows.Forms.Button btnOK;
244  private System.Windows.Forms.Button btnUp;
245  private System.Windows.Forms.Button btnDown;
246  private System.Windows.Forms.Label label2;
247  private System.Windows.Forms.DataGridViewTextBoxColumn colName;
248  private System.Windows.Forms.DataGridViewCheckBoxColumn colStart;
249  private System.Windows.Forms.DataGridViewCheckBoxColumn colVisible;
250  private System.Windows.Forms.DataGridViewComboBoxColumn colDelayAfter;
251  private System.Windows.Forms.DataGridViewTextBoxColumn colIndex;
252  private System.Windows.Forms.Label label3;
253  }
254 }
void InitializeComponent()
Required method for Designer support - do not modify the contents of this method with the code editor...
System.Windows.Forms.DataGridViewCheckBoxColumn colStart
System.Windows.Forms.DataGridViewComboBoxColumn colDelayAfter
override void Dispose(bool disposing)
Clean up any resources being used.
System.Windows.Forms.DataGridViewTextBoxColumn colName
System.Windows.Forms.DataGridViewTextBoxColumn colIndex
System.Windows.Forms.DataGridViewCheckBoxColumn colVisible