Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 796 was 775, checked in by swagner, 16 years ago

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

File size: 4.9 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.button2 = new System.Windows.Forms.Button();
30      this.label1 = new System.Windows.Forms.Label();
31      this.label2 = new System.Windows.Forms.Label();
32      this.SuspendLayout();
33      //
34      // textBox1
35      //
36      this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
37                  | System.Windows.Forms.AnchorStyles.Right)));
38      this.textBox1.Location = new System.Drawing.Point(80, 12);
39      this.textBox1.Name = "textBox1";
40      this.textBox1.Size = new System.Drawing.Size(192, 20);
41      this.textBox1.TabIndex = 0;
42      this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
43      //
44      // button1
45      //
46      this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
47      this.button1.Location = new System.Drawing.Point(116, 78);
48      this.button1.Name = "button1";
49      this.button1.Size = new System.Drawing.Size(75, 23);
50      this.button1.TabIndex = 1;
51      this.button1.Text = "Save";
52      this.button1.UseVisualStyleBackColor = true;
53      this.button1.Click += new System.EventHandler(this.button1_Click);
54      //
55      // textBox2
56      //
57      this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
58                  | System.Windows.Forms.AnchorStyles.Right)));
59      this.textBox2.Location = new System.Drawing.Point(80, 38);
60      this.textBox2.Name = "textBox2";
61      this.textBox2.Size = new System.Drawing.Size(192, 20);
62      this.textBox2.TabIndex = 0;
63      this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
64      //
65      // button2
66      //
67      this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
68      this.button2.Location = new System.Drawing.Point(197, 78);
69      this.button2.Name = "button2";
70      this.button2.Size = new System.Drawing.Size(75, 23);
71      this.button2.TabIndex = 2;
72      this.button2.Text = "Reload";
73      this.button2.UseVisualStyleBackColor = true;
74      this.button2.Click += new System.EventHandler(this.button2_Click);
75      //
76      // label1
77      //
78      this.label1.AutoSize = true;
79      this.label1.Location = new System.Drawing.Point(12, 15);
80      this.label1.Name = "label1";
81      this.label1.Size = new System.Drawing.Size(62, 13);
82      this.label1.TabIndex = 3;
83      this.label1.Text = "Application:";
84      //
85      // label2
86      //
87      this.label2.AutoSize = true;
88      this.label2.Location = new System.Drawing.Point(12, 41);
89      this.label2.Name = "label2";
90      this.label2.Size = new System.Drawing.Size(32, 13);
91      this.label2.TabIndex = 3;
92      this.label2.Text = "User:";
93      //
94      // MainForm
95      //
96      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
97      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
98      this.ClientSize = new System.Drawing.Size(284, 113);
99      this.Controls.Add(this.label2);
100      this.Controls.Add(this.label1);
101      this.Controls.Add(this.button2);
102      this.Controls.Add(this.button1);
103      this.Controls.Add(this.textBox2);
104      this.Controls.Add(this.textBox1);
105      this.Name = "MainForm";
106      this.Text = "MainForm";
107      this.Load += new System.EventHandler(this.MainForm_Load);
108      this.ResumeLayout(false);
109      this.PerformLayout();
110
111    }
112
113    #endregion
114
115    private System.Windows.Forms.TextBox textBox1;
116    private System.Windows.Forms.Button button1;
117    private System.Windows.Forms.TextBox textBox2;
118    private System.Windows.Forms.Button button2;
119    private System.Windows.Forms.Label label1;
120    private System.Windows.Forms.Label label2;
121  }
122}
Note: See TracBrowser for help on using the repository browser.