SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
RemoveComponent.Designer.cs
Go to the documentation of this file.
1 namespace Sample_Environment_Control_Interface.Dialogs.Config
2 {
3  partial class RemoveComponent
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.label1 = new System.Windows.Forms.Label();
32  this.lstComps = new System.Windows.Forms.ListBox();
33  this.btnRemove = new System.Windows.Forms.Button();
34  this.label2 = new System.Windows.Forms.Label();
35  this.lstToRemove = new System.Windows.Forms.ListBox();
36  this.btnUndo = new System.Windows.Forms.Button();
37  this.btnCancel = new System.Windows.Forms.Button();
38  this.btnOK = new System.Windows.Forms.Button();
39  this.label3 = new System.Windows.Forms.Label();
40  this.SuspendLayout();
41  //
42  // label1
43  //
44  this.label1.AutoSize = true;
45  this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
46  this.label1.Location = new System.Drawing.Point(9, 9);
47  this.label1.Name = "label1";
48  this.label1.Size = new System.Drawing.Size(205, 16);
49  this.label1.TabIndex = 0;
50  this.label1.Text = "Select Component(s) to Remove:";
51  //
52  // lstComps
53  //
54  this.lstComps.FormattingEnabled = true;
55  this.lstComps.Location = new System.Drawing.Point(12, 28);
56  this.lstComps.Name = "lstComps";
57  this.lstComps.Size = new System.Drawing.Size(360, 147);
58  this.lstComps.TabIndex = 1;
59  //
60  // btnRemove
61  //
62  this.btnRemove.Location = new System.Drawing.Point(378, 69);
63  this.btnRemove.Name = "btnRemove";
64  this.btnRemove.Size = new System.Drawing.Size(38, 23);
65  this.btnRemove.TabIndex = 2;
66  this.btnRemove.Text = "-->";
67  this.btnRemove.UseVisualStyleBackColor = true;
68  this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
69  //
70  // label2
71  //
72  this.label2.AutoSize = true;
73  this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
74  this.label2.Location = new System.Drawing.Point(419, 9);
75  this.label2.Name = "label2";
76  this.label2.Size = new System.Drawing.Size(164, 16);
77  this.label2.TabIndex = 3;
78  this.label2.Text = "Component(s) to Remove:";
79  //
80  // lstToRemove
81  //
82  this.lstToRemove.FormattingEnabled = true;
83  this.lstToRemove.Location = new System.Drawing.Point(422, 28);
84  this.lstToRemove.Name = "lstToRemove";
85  this.lstToRemove.Size = new System.Drawing.Size(360, 147);
86  this.lstToRemove.TabIndex = 4;
87  //
88  // btnUndo
89  //
90  this.btnUndo.Location = new System.Drawing.Point(378, 98);
91  this.btnUndo.Name = "btnUndo";
92  this.btnUndo.Size = new System.Drawing.Size(38, 23);
93  this.btnUndo.TabIndex = 5;
94  this.btnUndo.Text = "<--";
95  this.btnUndo.UseVisualStyleBackColor = true;
96  this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
97  //
98  // btnCancel
99  //
100  this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
101  this.btnCancel.Location = new System.Drawing.Point(707, 183);
102  this.btnCancel.Name = "btnCancel";
103  this.btnCancel.Size = new System.Drawing.Size(75, 23);
104  this.btnCancel.TabIndex = 6;
105  this.btnCancel.Text = "Cancel";
106  this.btnCancel.UseVisualStyleBackColor = true;
107  //
108  // btnOK
109  //
110  this.btnOK.Location = new System.Drawing.Point(626, 183);
111  this.btnOK.Name = "btnOK";
112  this.btnOK.Size = new System.Drawing.Size(75, 23);
113  this.btnOK.TabIndex = 7;
114  this.btnOK.Text = "OK";
115  this.btnOK.UseVisualStyleBackColor = true;
116  this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
117  //
118  // label3
119  //
120  this.label3.AutoSize = true;
121  this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
122  this.label3.Location = new System.Drawing.Point(12, 186);
123  this.label3.Name = "label3";
124  this.label3.Size = new System.Drawing.Size(562, 16);
125  this.label3.TabIndex = 8;
126  this.label3.Text = "Note: Removing a Component will remove all VIs, Blocks etc. associated with that " +
127  "Component.";
128  //
129  // RemoveComponent
130  //
131  this.AcceptButton = this.btnOK;
132  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
133  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
134  this.CancelButton = this.btnCancel;
135  this.ClientSize = new System.Drawing.Size(795, 218);
136  this.ControlBox = false;
137  this.Controls.Add(this.label3);
138  this.Controls.Add(this.btnOK);
139  this.Controls.Add(this.btnCancel);
140  this.Controls.Add(this.btnUndo);
141  this.Controls.Add(this.lstToRemove);
142  this.Controls.Add(this.label2);
143  this.Controls.Add(this.btnRemove);
144  this.Controls.Add(this.lstComps);
145  this.Controls.Add(this.label1);
146  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
147  this.Name = "RemoveComponent";
148  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
149  this.Text = "Remove Components";
150  this.Load += new System.EventHandler(this.RemoveComponent_Load);
151  this.ResumeLayout(false);
152  this.PerformLayout();
153 
154  }
155 
156  #endregion
157 
158  private System.Windows.Forms.Label label1;
159  private System.Windows.Forms.ListBox lstComps;
160  private System.Windows.Forms.Button btnRemove;
161  private System.Windows.Forms.Label label2;
162  private System.Windows.Forms.ListBox lstToRemove;
163  private System.Windows.Forms.Button btnUndo;
164  private System.Windows.Forms.Button btnCancel;
165  private System.Windows.Forms.Button btnOK;
166  private System.Windows.Forms.Label label3;
167  }
168 }
override void Dispose(bool disposing)
Clean up any resources being used.
void InitializeComponent()
Required method for Designer support - do not modify the contents of this method with the code editor...