SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
RemoveVI.Designer.cs
Go to the documentation of this file.
1 namespace SeciUserInterface.Dialogs.VIs
2 {
3  partial class RemoveVI
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.lstVIs = 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.SuspendLayout();
40  //
41  // label1
42  //
43  this.label1.AutoSize = true;
44  this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
45  this.label1.Location = new System.Drawing.Point(9, 9);
46  this.label1.Name = "label1";
47  this.label1.Size = new System.Drawing.Size(148, 16);
48  this.label1.TabIndex = 0;
49  this.label1.Text = "Select VI(s) to Remove:";
50  //
51  // lstVIs
52  //
53  this.lstVIs.FormattingEnabled = true;
54  this.lstVIs.HorizontalScrollbar = true;
55  this.lstVIs.Location = new System.Drawing.Point(12, 28);
56  this.lstVIs.Name = "lstVIs";
57  this.lstVIs.Size = new System.Drawing.Size(360, 147);
58  this.lstVIs.TabIndex = 1;
59  //
60  // btnRemove
61  //
62  this.btnRemove.Location = new System.Drawing.Point(378, 63);
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(421, 9);
75  this.label2.Name = "label2";
76  this.label2.Size = new System.Drawing.Size(107, 16);
77  this.label2.TabIndex = 3;
78  this.label2.Text = "VI(s) to Remove:";
79  //
80  // lstToRemove
81  //
82  this.lstToRemove.FormattingEnabled = true;
83  this.lstToRemove.HorizontalScrollbar = true;
84  this.lstToRemove.Location = new System.Drawing.Point(424, 30);
85  this.lstToRemove.Name = "lstToRemove";
86  this.lstToRemove.Size = new System.Drawing.Size(360, 147);
87  this.lstToRemove.TabIndex = 4;
88  //
89  // btnUndo
90  //
91  this.btnUndo.Location = new System.Drawing.Point(378, 92);
92  this.btnUndo.Name = "btnUndo";
93  this.btnUndo.Size = new System.Drawing.Size(38, 23);
94  this.btnUndo.TabIndex = 5;
95  this.btnUndo.Text = "<--";
96  this.btnUndo.UseVisualStyleBackColor = true;
97  this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
98  //
99  // btnCancel
100  //
101  this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
102  this.btnCancel.Location = new System.Drawing.Point(709, 183);
103  this.btnCancel.Name = "btnCancel";
104  this.btnCancel.Size = new System.Drawing.Size(75, 23);
105  this.btnCancel.TabIndex = 6;
106  this.btnCancel.Text = "Cancel";
107  this.btnCancel.UseVisualStyleBackColor = true;
108  //
109  // btnOK
110  //
111  this.btnOK.Location = new System.Drawing.Point(628, 183);
112  this.btnOK.Name = "btnOK";
113  this.btnOK.Size = new System.Drawing.Size(75, 23);
114  this.btnOK.TabIndex = 7;
115  this.btnOK.Text = "OK";
116  this.btnOK.UseVisualStyleBackColor = true;
117  this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
118  //
119  // RemoveVI
120  //
121  this.AcceptButton = this.btnOK;
122  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
123  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
124  this.CancelButton = this.btnCancel;
125  this.ClientSize = new System.Drawing.Size(796, 218);
126  this.ControlBox = false;
127  this.Controls.Add(this.btnOK);
128  this.Controls.Add(this.btnCancel);
129  this.Controls.Add(this.btnUndo);
130  this.Controls.Add(this.lstToRemove);
131  this.Controls.Add(this.label2);
132  this.Controls.Add(this.btnRemove);
133  this.Controls.Add(this.lstVIs);
134  this.Controls.Add(this.label1);
135  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
136  this.Name = "RemoveVI";
137  this.ShowInTaskbar = false;
138  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
139  this.Text = "Remove VIs - SECI";
140  this.Load += new System.EventHandler(this.RemoveVI_Load);
141  this.ResumeLayout(false);
142  this.PerformLayout();
143 
144  }
145 
146  #endregion
147 
148  private System.Windows.Forms.Label label1;
149  private System.Windows.Forms.ListBox lstVIs;
150  private System.Windows.Forms.Button btnRemove;
151  private System.Windows.Forms.Label label2;
152  private System.Windows.Forms.ListBox lstToRemove;
153  private System.Windows.Forms.Button btnUndo;
154  private System.Windows.Forms.Button btnCancel;
155  private System.Windows.Forms.Button btnOK;
156  }
157 }
System.Windows.Forms.ListBox lstVIs
System.Windows.Forms.Button btnRemove
System.Windows.Forms.ListBox lstToRemove
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...
System.Windows.Forms.Button btnCancel
System.Windows.Forms.Button btnUndo