SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
AddAlert.Designer.cs
Go to the documentation of this file.
1 namespace SeciUserInterface.Dialogs.Alerts
2 {
3  partial class AddAlert
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.comBlocks = new System.Windows.Forms.ComboBox();
33  this.label2 = new System.Windows.Forms.Label();
34  this.label3 = new System.Windows.Forms.Label();
35  this.txtHigh = new System.Windows.Forms.TextBox();
36  this.txtLow = new System.Windows.Forms.TextBox();
37  this.btnOK = new System.Windows.Forms.Button();
38  this.btnCancel = new System.Windows.Forms.Button();
39  this.lblType = new System.Windows.Forms.Label();
40  this.SuspendLayout();
41  //
42  // label1
43  //
44  this.label1.AutoSize = true;
45  this.label1.Location = new System.Drawing.Point(13, 13);
46  this.label1.Name = "label1";
47  this.label1.Size = new System.Drawing.Size(68, 13);
48  this.label1.TabIndex = 0;
49  this.label1.Text = "Block Name:";
50  //
51  // comBlocks
52  //
53  this.comBlocks.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
54  this.comBlocks.FormattingEnabled = true;
55  this.comBlocks.Location = new System.Drawing.Point(87, 10);
56  this.comBlocks.Name = "comBlocks";
57  this.comBlocks.Size = new System.Drawing.Size(121, 21);
58  this.comBlocks.TabIndex = 1;
59  this.comBlocks.SelectedIndexChanged += new System.EventHandler(this.comBlocks_SelectedIndexChanged);
60  //
61  // label2
62  //
63  this.label2.AutoSize = true;
64  this.label2.Location = new System.Drawing.Point(25, 66);
65  this.label2.Name = "label2";
66  this.label2.Size = new System.Drawing.Size(56, 13);
67  this.label2.TabIndex = 2;
68  this.label2.Text = "High Limit:";
69  //
70  // label3
71  //
72  this.label3.AutoSize = true;
73  this.label3.Location = new System.Drawing.Point(27, 40);
74  this.label3.Name = "label3";
75  this.label3.Size = new System.Drawing.Size(54, 13);
76  this.label3.TabIndex = 3;
77  this.label3.Text = "Low Limit:";
78  //
79  // txtHigh
80  //
81  this.txtHigh.Location = new System.Drawing.Point(87, 63);
82  this.txtHigh.Name = "txtHigh";
83  this.txtHigh.Size = new System.Drawing.Size(65, 20);
84  this.txtHigh.TabIndex = 4;
85  this.txtHigh.Text = "0";
86  //
87  // txtLow
88  //
89  this.txtLow.Location = new System.Drawing.Point(87, 37);
90  this.txtLow.Name = "txtLow";
91  this.txtLow.Size = new System.Drawing.Size(65, 20);
92  this.txtLow.TabIndex = 5;
93  this.txtLow.Text = "0";
94  //
95  // btnOK
96  //
97  this.btnOK.Location = new System.Drawing.Point(253, 85);
98  this.btnOK.Name = "btnOK";
99  this.btnOK.Size = new System.Drawing.Size(75, 23);
100  this.btnOK.TabIndex = 6;
101  this.btnOK.Text = "OK";
102  this.btnOK.UseVisualStyleBackColor = true;
103  this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
104  //
105  // btnCancel
106  //
107  this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
108  this.btnCancel.Location = new System.Drawing.Point(253, 114);
109  this.btnCancel.Name = "btnCancel";
110  this.btnCancel.Size = new System.Drawing.Size(75, 23);
111  this.btnCancel.TabIndex = 7;
112  this.btnCancel.Text = "Cancel";
113  this.btnCancel.UseVisualStyleBackColor = true;
114  //
115  // lblType
116  //
117  this.lblType.AutoSize = true;
118  this.lblType.Location = new System.Drawing.Point(214, 13);
119  this.lblType.Name = "lblType";
120  this.lblType.Size = new System.Drawing.Size(65, 13);
121  this.lblType.TabIndex = 8;
122  this.lblType.Text = "UNKNOWN";
123  this.lblType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
124  //
125  // AddAlert
126  //
127  this.AcceptButton = this.btnOK;
128  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
129  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
130  this.CancelButton = this.btnCancel;
131  this.ClientSize = new System.Drawing.Size(340, 149);
132  this.ControlBox = false;
133  this.Controls.Add(this.lblType);
134  this.Controls.Add(this.btnCancel);
135  this.Controls.Add(this.btnOK);
136  this.Controls.Add(this.txtLow);
137  this.Controls.Add(this.txtHigh);
138  this.Controls.Add(this.label3);
139  this.Controls.Add(this.label2);
140  this.Controls.Add(this.comBlocks);
141  this.Controls.Add(this.label1);
142  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
143  this.Name = "AddAlert";
144  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
145  this.Text = "Add Alert - SECI";
146  this.Load += new System.EventHandler(this.AddAlert_Load);
147  this.ResumeLayout(false);
148  this.PerformLayout();
149 
150  }
151 
152  #endregion
153 
154  private System.Windows.Forms.Label label1;
155  private System.Windows.Forms.ComboBox comBlocks;
156  private System.Windows.Forms.Label label2;
157  private System.Windows.Forms.Label label3;
158  private System.Windows.Forms.TextBox txtHigh;
159  private System.Windows.Forms.TextBox txtLow;
160  private System.Windows.Forms.Button btnOK;
161  private System.Windows.Forms.Button btnCancel;
162  private System.Windows.Forms.Label lblType;
163  }
164 }
void InitializeComponent()
Required method for Designer support - do not modify the contents of this method with the code editor...
System.Windows.Forms.ComboBox comBlocks
override void Dispose(bool disposing)
Clean up any resources being used.