SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
Configure_BlockViewer.Designer.cs
Go to the documentation of this file.
1 namespace Sample_Environment_Control_Interface.Dialogs.Layout
2 {
3  partial class Configure_BlockViewer
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.btnAdd = new System.Windows.Forms.Button();
32  this.btnDelete = new System.Windows.Forms.Button();
33  this.btnEdit = new System.Windows.Forms.Button();
34  this.groupBox1 = new System.Windows.Forms.GroupBox();
35  this.lstControls = new System.Windows.Forms.ListBox();
36  this.label1 = new System.Windows.Forms.Label();
37  this.lstItems = new System.Windows.Forms.ListBox();
38  this.label2 = new System.Windows.Forms.Label();
39  this.btnOK = new System.Windows.Forms.Button();
40  this.btnCancel = new System.Windows.Forms.Button();
41  this.groupBox1.SuspendLayout();
42  this.SuspendLayout();
43  //
44  // btnAdd
45  //
46  this.btnAdd.Location = new System.Drawing.Point(6, 20);
47  this.btnAdd.Name = "btnAdd";
48  this.btnAdd.Size = new System.Drawing.Size(61, 23);
49  this.btnAdd.TabIndex = 0;
50  this.btnAdd.Text = "Add";
51  this.btnAdd.UseVisualStyleBackColor = true;
52  this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
53  //
54  // btnDelete
55  //
56  this.btnDelete.Location = new System.Drawing.Point(140, 20);
57  this.btnDelete.Name = "btnDelete";
58  this.btnDelete.Size = new System.Drawing.Size(61, 23);
59  this.btnDelete.TabIndex = 1;
60  this.btnDelete.Text = "Delete";
61  this.btnDelete.UseVisualStyleBackColor = true;
62  this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
63  //
64  // btnEdit
65  //
66  this.btnEdit.Location = new System.Drawing.Point(73, 20);
67  this.btnEdit.Name = "btnEdit";
68  this.btnEdit.Size = new System.Drawing.Size(61, 23);
69  this.btnEdit.TabIndex = 2;
70  this.btnEdit.Text = "Edit";
71  this.btnEdit.UseVisualStyleBackColor = true;
72  this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
73  //
74  // groupBox1
75  //
76  this.groupBox1.Controls.Add(this.btnAdd);
77  this.groupBox1.Controls.Add(this.btnDelete);
78  this.groupBox1.Controls.Add(this.btnEdit);
79  this.groupBox1.Location = new System.Drawing.Point(12, 12);
80  this.groupBox1.Name = "groupBox1";
81  this.groupBox1.Size = new System.Drawing.Size(209, 49);
82  this.groupBox1.TabIndex = 3;
83  this.groupBox1.TabStop = false;
84  this.groupBox1.Text = "Configuration Options";
85  //
86  // lstControls
87  //
88  this.lstControls.FormattingEnabled = true;
89  this.lstControls.Location = new System.Drawing.Point(12, 80);
90  this.lstControls.Name = "lstControls";
91  this.lstControls.Size = new System.Drawing.Size(163, 147);
92  this.lstControls.TabIndex = 4;
93  this.lstControls.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
94  //
95  // label1
96  //
97  this.label1.AutoSize = true;
98  this.label1.Location = new System.Drawing.Point(12, 64);
99  this.label1.Name = "label1";
100  this.label1.Size = new System.Drawing.Size(113, 13);
101  this.label1.TabIndex = 5;
102  this.label1.Text = "Existing BlockViewers:";
103  //
104  // lstItems
105  //
106  this.lstItems.FormattingEnabled = true;
107  this.lstItems.Location = new System.Drawing.Point(206, 80);
108  this.lstItems.Name = "lstItems";
109  this.lstItems.Size = new System.Drawing.Size(134, 147);
110  this.lstItems.TabIndex = 6;
111  //
112  // label2
113  //
114  this.label2.AutoSize = true;
115  this.label2.Location = new System.Drawing.Point(203, 64);
116  this.label2.Name = "label2";
117  this.label2.Size = new System.Drawing.Size(91, 13);
118  this.label2.TabIndex = 7;
119  this.label2.Text = "Blocks Displayed:";
120  //
121  // btnOK
122  //
123  this.btnOK.Location = new System.Drawing.Point(346, 175);
124  this.btnOK.Name = "btnOK";
125  this.btnOK.Size = new System.Drawing.Size(75, 23);
126  this.btnOK.TabIndex = 8;
127  this.btnOK.Text = "OK";
128  this.btnOK.UseVisualStyleBackColor = true;
129  this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
130  //
131  // btnCancel
132  //
133  this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
134  this.btnCancel.Location = new System.Drawing.Point(346, 204);
135  this.btnCancel.Name = "btnCancel";
136  this.btnCancel.Size = new System.Drawing.Size(75, 23);
137  this.btnCancel.TabIndex = 9;
138  this.btnCancel.Text = "Cancel";
139  this.btnCancel.UseVisualStyleBackColor = true;
140  //
141  // Configure_BlockViewer
142  //
143  this.AcceptButton = this.btnOK;
144  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
145  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
146  this.CancelButton = this.btnCancel;
147  this.ClientSize = new System.Drawing.Size(431, 239);
148  this.Controls.Add(this.btnCancel);
149  this.Controls.Add(this.btnOK);
150  this.Controls.Add(this.label2);
151  this.Controls.Add(this.lstItems);
152  this.Controls.Add(this.label1);
153  this.Controls.Add(this.lstControls);
154  this.Controls.Add(this.groupBox1);
155  this.Name = "Configure_BlockViewer";
156  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
157  this.Text = "Configure Block Viewer Options";
158  this.Load += new System.EventHandler(this.Configure_RunInfo_Load);
159  this.groupBox1.ResumeLayout(false);
160  this.ResumeLayout(false);
161  this.PerformLayout();
162 
163  }
164 
165  #endregion
166 
167  private System.Windows.Forms.Button btnAdd;
168  private System.Windows.Forms.Button btnDelete;
169  private System.Windows.Forms.Button btnEdit;
170  private System.Windows.Forms.GroupBox groupBox1;
171  private System.Windows.Forms.ListBox lstControls;
172  private System.Windows.Forms.Label label1;
173  private System.Windows.Forms.ListBox lstItems;
174  private System.Windows.Forms.Label label2;
175  private System.Windows.Forms.Button btnOK;
176  private System.Windows.Forms.Button btnCancel;
177  }
178 }
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.