SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
ConfigureGraphs.Designer.cs
Go to the documentation of this file.
1 namespace SeciUserInterface.Dialogs.Graphs
2 {
3  partial class ConfigureGraphs
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.btnEdit = new System.Windows.Forms.Button();
33  this.btnDelete = new System.Windows.Forms.Button();
34  this.lstGraphs = new System.Windows.Forms.ListBox();
35  this.lstPlots = new System.Windows.Forms.ListBox();
36  this.btnOK = new System.Windows.Forms.Button();
37  this.btnCancel = new System.Windows.Forms.Button();
38  this.label1 = new System.Windows.Forms.Label();
39  this.label2 = new System.Windows.Forms.Label();
40  this.SuspendLayout();
41  //
42  // btnAdd
43  //
44  this.btnAdd.Location = new System.Drawing.Point(141, 27);
45  this.btnAdd.Name = "btnAdd";
46  this.btnAdd.Size = new System.Drawing.Size(95, 23);
47  this.btnAdd.TabIndex = 0;
48  this.btnAdd.Text = "Add Graph";
49  this.btnAdd.UseVisualStyleBackColor = true;
50  this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
51  //
52  // btnEdit
53  //
54  this.btnEdit.Location = new System.Drawing.Point(141, 54);
55  this.btnEdit.Name = "btnEdit";
56  this.btnEdit.Size = new System.Drawing.Size(95, 23);
57  this.btnEdit.TabIndex = 1;
58  this.btnEdit.Text = "Edit Graph";
59  this.btnEdit.UseVisualStyleBackColor = true;
60  this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
61  //
62  // btnDelete
63  //
64  this.btnDelete.Location = new System.Drawing.Point(141, 83);
65  this.btnDelete.Name = "btnDelete";
66  this.btnDelete.Size = new System.Drawing.Size(95, 23);
67  this.btnDelete.TabIndex = 2;
68  this.btnDelete.Text = "Delete Graph";
69  this.btnDelete.UseVisualStyleBackColor = true;
70  this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
71  //
72  // lstGraphs
73  //
74  this.lstGraphs.FormattingEnabled = true;
75  this.lstGraphs.Location = new System.Drawing.Point(15, 27);
76  this.lstGraphs.Name = "lstGraphs";
77  this.lstGraphs.Size = new System.Drawing.Size(120, 95);
78  this.lstGraphs.TabIndex = 3;
79  this.lstGraphs.SelectedIndexChanged += new System.EventHandler(this.lstGraphs_SelectedIndexChanged);
80  //
81  // lstPlots
82  //
83  this.lstPlots.FormattingEnabled = true;
84  this.lstPlots.Location = new System.Drawing.Point(15, 143);
85  this.lstPlots.Name = "lstPlots";
86  this.lstPlots.Size = new System.Drawing.Size(120, 95);
87  this.lstPlots.TabIndex = 4;
88  //
89  // btnOK
90  //
91  this.btnOK.Location = new System.Drawing.Point(161, 186);
92  this.btnOK.Name = "btnOK";
93  this.btnOK.Size = new System.Drawing.Size(75, 23);
94  this.btnOK.TabIndex = 23;
95  this.btnOK.Text = "OK";
96  this.btnOK.UseVisualStyleBackColor = true;
97  this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
98  //
99  // btnCancel
100  //
101  this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
102  this.btnCancel.Location = new System.Drawing.Point(161, 215);
103  this.btnCancel.Name = "btnCancel";
104  this.btnCancel.Size = new System.Drawing.Size(75, 23);
105  this.btnCancel.TabIndex = 24;
106  this.btnCancel.Text = "Cancel";
107  this.btnCancel.UseVisualStyleBackColor = true;
108  //
109  // label1
110  //
111  this.label1.AutoSize = true;
112  this.label1.Location = new System.Drawing.Point(12, 9);
113  this.label1.Name = "label1";
114  this.label1.Size = new System.Drawing.Size(75, 13);
115  this.label1.TabIndex = 25;
116  this.label1.Text = "Graph Names:";
117  //
118  // label2
119  //
120  this.label2.AutoSize = true;
121  this.label2.Location = new System.Drawing.Point(12, 125);
122  this.label2.Name = "label2";
123  this.label2.Size = new System.Drawing.Size(33, 13);
124  this.label2.TabIndex = 26;
125  this.label2.Text = "Plots:";
126  //
127  // ConfigureGraphs
128  //
129  this.AcceptButton = this.btnOK;
130  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
131  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
132  this.CancelButton = this.btnCancel;
133  this.ClientSize = new System.Drawing.Size(248, 255);
134  this.ControlBox = false;
135  this.Controls.Add(this.label2);
136  this.Controls.Add(this.label1);
137  this.Controls.Add(this.btnOK);
138  this.Controls.Add(this.btnCancel);
139  this.Controls.Add(this.lstPlots);
140  this.Controls.Add(this.lstGraphs);
141  this.Controls.Add(this.btnDelete);
142  this.Controls.Add(this.btnEdit);
143  this.Controls.Add(this.btnAdd);
144  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
145  this.Name = "ConfigureGraphs";
146  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
147  this.Text = "Configure Graphs - SECI";
148  this.Load += new System.EventHandler(this.ConfigureGraphs_Load);
149  this.ResumeLayout(false);
150  this.PerformLayout();
151 
152  }
153 
154  #endregion
155 
156  private System.Windows.Forms.Button btnAdd;
157  private System.Windows.Forms.Button btnEdit;
158  private System.Windows.Forms.Button btnDelete;
159  private System.Windows.Forms.ListBox lstGraphs;
160  private System.Windows.Forms.ListBox lstPlots;
161  internal System.Windows.Forms.Button btnOK;
162  internal System.Windows.Forms.Button btnCancel;
163  private System.Windows.Forms.Label label1;
164  private System.Windows.Forms.Label label2;
165  }
166 }
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...