SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
AddEditGroup.Designer.cs
Go to the documentation of this file.
1 namespace Sample_Environment_Control_Interface.Dialogs.Layout.Groups
2 {
3  partial class AddEditGroup
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.label1 = new System.Windows.Forms.Label();
33  this.txtName = new System.Windows.Forms.TextBox();
34  this.label2 = new System.Windows.Forms.Label();
35  this.lstVIs = new System.Windows.Forms.ListBox();
36  this.label3 = new System.Windows.Forms.Label();
37  this.lstProgs = new System.Windows.Forms.ListBox();
38  this.label4 = new System.Windows.Forms.Label();
39  this.lstVIMembers = new System.Windows.Forms.ListBox();
40  this.btnCancel = new System.Windows.Forms.Button();
41  this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
42  this.btnOK = new System.Windows.Forms.Button();
43  this.btnAddVI = new System.Windows.Forms.Button();
44  this.btnAddProg = new System.Windows.Forms.Button();
45  this.btnRemoveVI = new System.Windows.Forms.Button();
46  this.lstProgMembers = new System.Windows.Forms.ListBox();
47  this.label5 = new System.Windows.Forms.Label();
48  this.btnRemoveProg = new System.Windows.Forms.Button();
49  ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
50  this.SuspendLayout();
51  //
52  // label1
53  //
54  this.label1.AutoSize = true;
55  this.label1.Location = new System.Drawing.Point(12, 9);
56  this.label1.Name = "label1";
57  this.label1.Size = new System.Drawing.Size(66, 13);
58  this.label1.TabIndex = 0;
59  this.label1.Text = "Page Name:";
60  //
61  // txtName
62  //
63  this.txtName.Location = new System.Drawing.Point(88, 6);
64  this.txtName.Name = "txtName";
65  this.txtName.Size = new System.Drawing.Size(146, 20);
66  this.txtName.TabIndex = 1;
67  //
68  // label2
69  //
70  this.label2.AutoSize = true;
71  this.label2.Location = new System.Drawing.Point(12, 48);
72  this.label2.Name = "label2";
73  this.label2.Size = new System.Drawing.Size(103, 13);
74  this.label2.TabIndex = 2;
75  this.label2.Text = "VI\'s in Configuration:";
76  //
77  // lstVIs
78  //
79  this.lstVIs.FormattingEnabled = true;
80  this.lstVIs.Location = new System.Drawing.Point(15, 64);
81  this.lstVIs.Name = "lstVIs";
82  this.lstVIs.Size = new System.Drawing.Size(204, 160);
83  this.lstVIs.TabIndex = 3;
84  //
85  // label3
86  //
87  this.label3.AutoSize = true;
88  this.label3.Location = new System.Drawing.Point(12, 236);
89  this.label3.Name = "label3";
90  this.label3.Size = new System.Drawing.Size(144, 13);
91  this.label3.TabIndex = 4;
92  this.label3.Text = "Programmes in Configuration:";
93  //
94  // lstProgs
95  //
96  this.lstProgs.FormattingEnabled = true;
97  this.lstProgs.Location = new System.Drawing.Point(15, 252);
98  this.lstProgs.Name = "lstProgs";
99  this.lstProgs.Size = new System.Drawing.Size(204, 82);
100  this.lstProgs.TabIndex = 5;
101  //
102  // label4
103  //
104  this.label4.AutoSize = true;
105  this.label4.Location = new System.Drawing.Point(301, 48);
106  this.label4.Name = "label4";
107  this.label4.Size = new System.Drawing.Size(70, 13);
108  this.label4.TabIndex = 6;
109  this.label4.Text = "VI\'s on Page:";
110  //
111  // lstVIMembers
112  //
113  this.lstVIMembers.FormattingEnabled = true;
114  this.lstVIMembers.Location = new System.Drawing.Point(304, 64);
115  this.lstVIMembers.Name = "lstVIMembers";
116  this.lstVIMembers.Size = new System.Drawing.Size(204, 160);
117  this.lstVIMembers.TabIndex = 7;
118  //
119  // btnCancel
120  //
121  this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
122  this.btnCancel.Location = new System.Drawing.Point(614, 311);
123  this.btnCancel.Name = "btnCancel";
124  this.btnCancel.Size = new System.Drawing.Size(75, 23);
125  this.btnCancel.TabIndex = 8;
126  this.btnCancel.Text = "Cancel";
127  this.btnCancel.UseVisualStyleBackColor = true;
128  //
129  // btnOK
130  //
131  this.btnOK.Location = new System.Drawing.Point(614, 282);
132  this.btnOK.Name = "btnOK";
133  this.btnOK.Size = new System.Drawing.Size(75, 23);
134  this.btnOK.TabIndex = 9;
135  this.btnOK.Text = "OK";
136  this.btnOK.UseVisualStyleBackColor = true;
137  this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
138  //
139  // btnAddVI
140  //
141  this.btnAddVI.Location = new System.Drawing.Point(225, 64);
142  this.btnAddVI.Name = "btnAddVI";
143  this.btnAddVI.Size = new System.Drawing.Size(37, 23);
144  this.btnAddVI.TabIndex = 10;
145  this.btnAddVI.Text = "Add";
146  this.btnAddVI.UseVisualStyleBackColor = true;
147  this.btnAddVI.Click += new System.EventHandler(this.btnAddVI_Click);
148  //
149  // btnAddProg
150  //
151  this.btnAddProg.Location = new System.Drawing.Point(225, 252);
152  this.btnAddProg.Name = "btnAddProg";
153  this.btnAddProg.Size = new System.Drawing.Size(37, 23);
154  this.btnAddProg.TabIndex = 11;
155  this.btnAddProg.Text = "Add";
156  this.btnAddProg.UseVisualStyleBackColor = true;
157  this.btnAddProg.Click += new System.EventHandler(this.btnAddProg_Click);
158  //
159  // btnRemoveVI
160  //
161  this.btnRemoveVI.Location = new System.Drawing.Point(514, 64);
162  this.btnRemoveVI.Name = "btnRemoveVI";
163  this.btnRemoveVI.Size = new System.Drawing.Size(55, 23);
164  this.btnRemoveVI.TabIndex = 12;
165  this.btnRemoveVI.Text = "Remove";
166  this.btnRemoveVI.UseVisualStyleBackColor = true;
167  this.btnRemoveVI.Click += new System.EventHandler(this.btnRemoveVI_Click);
168  //
169  // lstProgMembers
170  //
171  this.lstProgMembers.FormattingEnabled = true;
172  this.lstProgMembers.Location = new System.Drawing.Point(304, 252);
173  this.lstProgMembers.Name = "lstProgMembers";
174  this.lstProgMembers.Size = new System.Drawing.Size(204, 82);
175  this.lstProgMembers.TabIndex = 14;
176  //
177  // label5
178  //
179  this.label5.AutoSize = true;
180  this.label5.Location = new System.Drawing.Point(301, 236);
181  this.label5.Name = "label5";
182  this.label5.Size = new System.Drawing.Size(111, 13);
183  this.label5.TabIndex = 13;
184  this.label5.Text = "Programmes on Page:";
185  //
186  // btnRemoveProg
187  //
188  this.btnRemoveProg.Location = new System.Drawing.Point(514, 252);
189  this.btnRemoveProg.Name = "btnRemoveProg";
190  this.btnRemoveProg.Size = new System.Drawing.Size(55, 23);
191  this.btnRemoveProg.TabIndex = 15;
192  this.btnRemoveProg.Text = "Remove";
193  this.btnRemoveProg.UseVisualStyleBackColor = true;
194  this.btnRemoveProg.Click += new System.EventHandler(this.btnRemoveProg_Click);
195  //
196  // AddEditGroup
197  //
198  this.AcceptButton = this.btnOK;
199  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
200  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
201  this.CancelButton = this.btnCancel;
202  this.ClientSize = new System.Drawing.Size(701, 346);
203  this.ControlBox = false;
204  this.Controls.Add(this.btnRemoveProg);
205  this.Controls.Add(this.lstProgMembers);
206  this.Controls.Add(this.label5);
207  this.Controls.Add(this.btnRemoveVI);
208  this.Controls.Add(this.btnAddProg);
209  this.Controls.Add(this.btnAddVI);
210  this.Controls.Add(this.btnOK);
211  this.Controls.Add(this.btnCancel);
212  this.Controls.Add(this.lstVIMembers);
213  this.Controls.Add(this.label4);
214  this.Controls.Add(this.lstProgs);
215  this.Controls.Add(this.label3);
216  this.Controls.Add(this.lstVIs);
217  this.Controls.Add(this.label2);
218  this.Controls.Add(this.txtName);
219  this.Controls.Add(this.label1);
220  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
221  this.Name = "AddEditGroup";
222  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
223  this.Text = "Configure Page";
224  this.Load += new System.EventHandler(this.AddEditGroup_Load);
225  ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
226  this.ResumeLayout(false);
227  this.PerformLayout();
228 
229  }
230 
231  #endregion
232 
233  private System.Windows.Forms.Label label1;
234  private System.Windows.Forms.TextBox txtName;
235  private System.Windows.Forms.Label label2;
236  private System.Windows.Forms.ListBox lstVIs;
237  private System.Windows.Forms.Label label3;
238  private System.Windows.Forms.ListBox lstProgs;
239  private System.Windows.Forms.Label label4;
240  private System.Windows.Forms.ListBox lstVIMembers;
241  private System.Windows.Forms.Button btnCancel;
242  private System.Windows.Forms.BindingSource bindingSource1;
243  private System.Windows.Forms.Button btnOK;
244  private System.Windows.Forms.Button btnAddVI;
245  private System.Windows.Forms.Button btnAddProg;
246  private System.Windows.Forms.Button btnRemoveVI;
247  private System.Windows.Forms.ListBox lstProgMembers;
248  private System.Windows.Forms.Label label5;
249  private System.Windows.Forms.Button btnRemoveProg;
250  }
251 }
void InitializeComponent()
Required method for Designer support - do not modify the contents of this method with the code editor...
override void Dispose(bool disposing)
Clean up any resources being used.