Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Settings/MainForm.Designer.cs @ 758

Last change on this file since 758 was 757, checked in by swagner, 16 years ago

Experimented with the .NET application settings framework (#7)

File size: 2.8 KB
Line 
1namespace HeuristicLab.Settings {
2  partial class MainForm {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.textBox1 = new System.Windows.Forms.TextBox();
27      this.button1 = new System.Windows.Forms.Button();
28      this.textBox2 = new System.Windows.Forms.TextBox();
29      this.SuspendLayout();
30      //
31      // textBox1
32      //
33      this.textBox1.Location = new System.Drawing.Point(12, 12);
34      this.textBox1.Name = "textBox1";
35      this.textBox1.Size = new System.Drawing.Size(260, 20);
36      this.textBox1.TabIndex = 0;
37      this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
38      //
39      // button1
40      //
41      this.button1.Location = new System.Drawing.Point(12, 38);
42      this.button1.Name = "button1";
43      this.button1.Size = new System.Drawing.Size(75, 23);
44      this.button1.TabIndex = 1;
45      this.button1.Text = "button1";
46      this.button1.UseVisualStyleBackColor = true;
47      this.button1.Click += new System.EventHandler(this.button1_Click);
48      //
49      // textBox2
50      //
51      this.textBox2.Location = new System.Drawing.Point(12, 106);
52      this.textBox2.Name = "textBox2";
53      this.textBox2.ReadOnly = true;
54      this.textBox2.Size = new System.Drawing.Size(260, 20);
55      this.textBox2.TabIndex = 0;
56      this.textBox2.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
57      //
58      // MainForm
59      //
60      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
61      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
62      this.ClientSize = new System.Drawing.Size(284, 264);
63      this.Controls.Add(this.button1);
64      this.Controls.Add(this.textBox2);
65      this.Controls.Add(this.textBox1);
66      this.Name = "MainForm";
67      this.Text = "MainForm";
68      this.Load += new System.EventHandler(this.MainForm_Load);
69      this.ResumeLayout(false);
70      this.PerformLayout();
71
72    }
73
74    #endregion
75
76    private System.Windows.Forms.TextBox textBox1;
77    private System.Windows.Forms.Button button1;
78    private System.Windows.Forms.TextBox textBox2;
79  }
80}
Note: See TracBrowser for help on using the repository browser.