SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
AddVI.Designer.cs
Go to the documentation of this file.
1 namespace Sample_Environment_Control_Interface.Dialogs.VI
2 {
3  partial class AddVI
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.txtVI = new System.Windows.Forms.TextBox();
33  this.btnBrowse = new System.Windows.Forms.Button();
34  this.browseDialog = new System.Windows.Forms.OpenFileDialog();
35  this.dataGridView1 = new System.Windows.Forms.DataGridView();
36  this.colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
37  this.colFront = new System.Windows.Forms.DataGridViewTextBoxColumn();
38  this.colAdd = new System.Windows.Forms.DataGridViewCheckBoxColumn();
39  this.btnCancel = new System.Windows.Forms.Button();
40  this.btnAdd = new System.Windows.Forms.Button();
41  ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
42  this.SuspendLayout();
43  //
44  // label1
45  //
46  this.label1.AutoSize = true;
47  this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
48  this.label1.Location = new System.Drawing.Point(12, 9);
49  this.label1.Name = "label1";
50  this.label1.Size = new System.Drawing.Size(65, 16);
51  this.label1.TabIndex = 0;
52  this.label1.Text = "VI to Add:";
53  //
54  // txtVI
55  //
56  this.txtVI.BackColor = System.Drawing.Color.White;
57  this.txtVI.Location = new System.Drawing.Point(83, 8);
58  this.txtVI.Name = "txtVI";
59  this.txtVI.ReadOnly = true;
60  this.txtVI.Size = new System.Drawing.Size(260, 20);
61  this.txtVI.TabIndex = 1;
62  //
63  // btnBrowse
64  //
65  this.btnBrowse.Location = new System.Drawing.Point(349, 6);
66  this.btnBrowse.Name = "btnBrowse";
67  this.btnBrowse.Size = new System.Drawing.Size(72, 23);
68  this.btnBrowse.TabIndex = 2;
69  this.btnBrowse.Text = "Browse";
70  this.btnBrowse.UseVisualStyleBackColor = true;
71  this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
72  //
73  // browseDialog
74  //
75  this.browseDialog.Filter = "LabView VI|*.vi|LabView Library|*.llb";
76  //
77  // dataGridView1
78  //
79  this.dataGridView1.AllowUserToAddRows = false;
80  this.dataGridView1.AllowUserToDeleteRows = false;
81  this.dataGridView1.AllowUserToResizeColumns = false;
82  this.dataGridView1.AllowUserToResizeRows = false;
83  this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
84  this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
85  this.colName,
86  this.colFront,
87  this.colAdd});
88  this.dataGridView1.Location = new System.Drawing.Point(12, 34);
89  this.dataGridView1.Name = "dataGridView1";
90  this.dataGridView1.Size = new System.Drawing.Size(409, 196);
91  this.dataGridView1.TabIndex = 3;
92  this.dataGridView1.Visible = false;
93  //
94  // colName
95  //
96  this.colName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
97  this.colName.HeaderText = "VI Name";
98  this.colName.Name = "colName";
99  this.colName.ReadOnly = true;
100  //
101  // colFront
102  //
103  this.colFront.HeaderText = "Is Front Panel?";
104  this.colFront.Name = "colFront";
105  this.colFront.ReadOnly = true;
106  this.colFront.Width = 110;
107  //
108  // colAdd
109  //
110  this.colAdd.HeaderText = "Add?";
111  this.colAdd.Name = "colAdd";
112  this.colAdd.Width = 50;
113  //
114  // btnCancel
115  //
116  this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
117  this.btnCancel.Location = new System.Drawing.Point(346, 34);
118  this.btnCancel.Name = "btnCancel";
119  this.btnCancel.Size = new System.Drawing.Size(75, 23);
120  this.btnCancel.TabIndex = 4;
121  this.btnCancel.Text = "Cancel";
122  this.btnCancel.UseVisualStyleBackColor = true;
123  //
124  // btnAdd
125  //
126  this.btnAdd.Location = new System.Drawing.Point(265, 34);
127  this.btnAdd.Name = "btnAdd";
128  this.btnAdd.Size = new System.Drawing.Size(75, 23);
129  this.btnAdd.TabIndex = 5;
130  this.btnAdd.Text = "Add";
131  this.btnAdd.UseVisualStyleBackColor = true;
132  this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
133  //
134  // AddVI
135  //
136  this.AcceptButton = this.btnAdd;
137  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
138  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
139  this.CancelButton = this.btnCancel;
140  this.ClientSize = new System.Drawing.Size(433, 68);
141  this.ControlBox = false;
142  this.Controls.Add(this.btnAdd);
143  this.Controls.Add(this.btnCancel);
144  this.Controls.Add(this.dataGridView1);
145  this.Controls.Add(this.btnBrowse);
146  this.Controls.Add(this.txtVI);
147  this.Controls.Add(this.label1);
148  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
149  this.Name = "AddVI";
150  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
151  this.Text = "Add VI";
152  ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
153  this.ResumeLayout(false);
154  this.PerformLayout();
155 
156  }
157 
158  #endregion
159 
160  private System.Windows.Forms.Label label1;
161  private System.Windows.Forms.TextBox txtVI;
162  private System.Windows.Forms.Button btnBrowse;
163  private System.Windows.Forms.OpenFileDialog browseDialog;
164  private System.Windows.Forms.DataGridView dataGridView1;
165  private System.Windows.Forms.Button btnCancel;
166  private System.Windows.Forms.Button btnAdd;
167  private System.Windows.Forms.DataGridViewTextBoxColumn colName;
168  private System.Windows.Forms.DataGridViewTextBoxColumn colFront;
169  private System.Windows.Forms.DataGridViewCheckBoxColumn colAdd;
170  }
171 }
void InitializeComponent()
Required method for Designer support - do not modify the contents of this method with the code editor...
System.Windows.Forms.DataGridView dataGridView1
override void Dispose(bool disposing)
Clean up any resources being used.
System.Windows.Forms.DataGridViewCheckBoxColumn colAdd
System.Windows.Forms.DataGridViewTextBoxColumn colName
System.Windows.Forms.OpenFileDialog browseDialog
System.Windows.Forms.DataGridViewTextBoxColumn colFront