SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
GraphLimitsDialog.Designer.cs
Go to the documentation of this file.
1 namespace SeciControls.Graphing
2 {
3  partial class GraphLimitsDialog
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.label2 = new System.Windows.Forms.Label();
33  this.txtMin = new System.Windows.Forms.TextBox();
34  this.txtMax = new System.Windows.Forms.TextBox();
35  this.chkMin = new System.Windows.Forms.CheckBox();
36  this.chkMax = new System.Windows.Forms.CheckBox();
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.Location = new System.Drawing.Point(15, 9);
45  this.label1.Name = "label1";
46  this.label1.Size = new System.Drawing.Size(81, 13);
47  this.label1.TabIndex = 0;
48  this.label1.Text = "Minimum Value:";
49  //
50  // label2
51  //
52  this.label2.AutoSize = true;
53  this.label2.Location = new System.Drawing.Point(12, 35);
54  this.label2.Name = "label2";
55  this.label2.Size = new System.Drawing.Size(84, 13);
56  this.label2.TabIndex = 1;
57  this.label2.Text = "Maximum Value:";
58  //
59  // txtMin
60  //
61  this.txtMin.Location = new System.Drawing.Point(102, 6);
62  this.txtMin.Name = "txtMin";
63  this.txtMin.Size = new System.Drawing.Size(57, 20);
64  this.txtMin.TabIndex = 2;
65  //
66  // txtMax
67  //
68  this.txtMax.Location = new System.Drawing.Point(102, 32);
69  this.txtMax.Name = "txtMax";
70  this.txtMax.Size = new System.Drawing.Size(57, 20);
71  this.txtMax.TabIndex = 3;
72  //
73  // chkMin
74  //
75  this.chkMin.AutoSize = true;
76  this.chkMin.Location = new System.Drawing.Point(166, 9);
77  this.chkMin.Name = "chkMin";
78  this.chkMin.Size = new System.Drawing.Size(78, 17);
79  this.chkMin.TabIndex = 4;
80  this.chkMin.Text = "Auto-Scale";
81  this.chkMin.UseVisualStyleBackColor = true;
82  this.chkMin.CheckedChanged += new System.EventHandler(this.chkMin_CheckedChanged);
83  //
84  // chkMax
85  //
86  this.chkMax.AutoSize = true;
87  this.chkMax.Location = new System.Drawing.Point(165, 32);
88  this.chkMax.Name = "chkMax";
89  this.chkMax.Size = new System.Drawing.Size(78, 17);
90  this.chkMax.TabIndex = 5;
91  this.chkMax.Text = "Auto-Scale";
92  this.chkMax.UseVisualStyleBackColor = true;
93  this.chkMax.CheckedChanged += new System.EventHandler(this.chkMax_CheckedChanged);
94  //
95  // btnCancel
96  //
97  this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
98  this.btnCancel.Location = new System.Drawing.Point(169, 65);
99  this.btnCancel.Name = "btnCancel";
100  this.btnCancel.Size = new System.Drawing.Size(75, 23);
101  this.btnCancel.TabIndex = 6;
102  this.btnCancel.Text = "Cancel";
103  this.btnCancel.UseVisualStyleBackColor = true;
104  //
105  // btnOK
106  //
107  this.btnOK.Location = new System.Drawing.Point(88, 65);
108  this.btnOK.Name = "btnOK";
109  this.btnOK.Size = new System.Drawing.Size(75, 23);
110  this.btnOK.TabIndex = 7;
111  this.btnOK.Text = "OK";
112  this.btnOK.UseVisualStyleBackColor = true;
113  this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
114  //
115  // GraphLimitsDialog
116  //
117  this.AcceptButton = this.btnOK;
118  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
119  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
120  this.CancelButton = this.btnCancel;
121  this.ClientSize = new System.Drawing.Size(255, 100);
122  this.ControlBox = false;
123  this.Controls.Add(this.btnOK);
124  this.Controls.Add(this.btnCancel);
125  this.Controls.Add(this.chkMax);
126  this.Controls.Add(this.chkMin);
127  this.Controls.Add(this.txtMax);
128  this.Controls.Add(this.txtMin);
129  this.Controls.Add(this.label2);
130  this.Controls.Add(this.label1);
131  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
132  this.Name = "GraphLimitsDialog";
133  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
134  this.Text = "Set Limits";
135  this.Load += new System.EventHandler(this.GraphLimitsDialog_Load);
136  this.ResumeLayout(false);
137  this.PerformLayout();
138 
139  }
140 
141  #endregion
142 
143  private System.Windows.Forms.Label label1;
144  private System.Windows.Forms.Label label2;
145  private System.Windows.Forms.TextBox txtMin;
146  private System.Windows.Forms.TextBox txtMax;
147  private System.Windows.Forms.CheckBox chkMin;
148  private System.Windows.Forms.CheckBox chkMax;
149  private System.Windows.Forms.Button btnCancel;
150  private System.Windows.Forms.Button btnOK;
151  }
152 }
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...