Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DbCreator/3.3/MainWindow.Designer.cs @ 6703

Last change on this file since 6703 was 6683, checked in by ascheibe, 13 years ago

#1233 replaced the CreateHiveDatabaseApplication HL App with a Windows Forms application

File size: 4.6 KB
Line 
1namespace HeuristicLab.Services.Hive.DbCreator {
2  partial class MainWindow {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
27      this.rtbDescription = new System.Windows.Forms.RichTextBox();
28      this.txtPath = new System.Windows.Forms.TextBox();
29      this.btnCreate = new System.Windows.Forms.Button();
30      this.btnChoosePath = new System.Windows.Forms.Button();
31      this.SuspendLayout();
32      //
33      // rtbDescription
34      //
35      this.rtbDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
36                  | System.Windows.Forms.AnchorStyles.Right)));
37      this.rtbDescription.Enabled = false;
38      this.rtbDescription.Location = new System.Drawing.Point(12, 12);
39      this.rtbDescription.Name = "rtbDescription";
40      this.rtbDescription.Size = new System.Drawing.Size(413, 96);
41      this.rtbDescription.TabIndex = 1;
42      this.rtbDescription.Text = resources.GetString("rtbDescription.Text");
43      //
44      // txtPath
45      //
46      this.txtPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
47                  | System.Windows.Forms.AnchorStyles.Right)));
48      this.txtPath.Location = new System.Drawing.Point(14, 118);
49      this.txtPath.Name = "txtPath";
50      this.txtPath.Size = new System.Drawing.Size(331, 20);
51      this.txtPath.TabIndex = 2;
52      //
53      // btnCreate
54      //
55      this.btnCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
56      this.btnCreate.Image = ((System.Drawing.Image)(resources.GetObject("btnCreate.Image")));
57      this.btnCreate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
58      this.btnCreate.Location = new System.Drawing.Point(350, 144);
59      this.btnCreate.Name = "btnCreate";
60      this.btnCreate.Size = new System.Drawing.Size(75, 23);
61      this.btnCreate.TabIndex = 3;
62      this.btnCreate.Text = "Create";
63      this.btnCreate.UseVisualStyleBackColor = true;
64      this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click);
65      //
66      // btnChoosePath
67      //
68      this.btnChoosePath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
69      this.btnChoosePath.Image = ((System.Drawing.Image)(resources.GetObject("btnChoosePath.Image")));
70      this.btnChoosePath.Location = new System.Drawing.Point(351, 115);
71      this.btnChoosePath.Name = "btnChoosePath";
72      this.btnChoosePath.Size = new System.Drawing.Size(75, 23);
73      this.btnChoosePath.TabIndex = 4;
74      this.btnChoosePath.UseVisualStyleBackColor = true;
75      this.btnChoosePath.Click += new System.EventHandler(this.btnChoosePath_Click);
76      //
77      // MainWindow
78      //
79      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
80      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
81      this.ClientSize = new System.Drawing.Size(437, 218);
82      this.Controls.Add(this.btnChoosePath);
83      this.Controls.Add(this.btnCreate);
84      this.Controls.Add(this.txtPath);
85      this.Controls.Add(this.rtbDescription);
86      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
87      this.Name = "MainWindow";
88      this.Text = "Hive Database Creator";
89      this.ResumeLayout(false);
90      this.PerformLayout();
91
92    }
93
94    #endregion
95
96    private System.Windows.Forms.RichTextBox rtbDescription;
97    private System.Windows.Forms.TextBox txtPath;
98    private System.Windows.Forms.Button btnCreate;
99    private System.Windows.Forms.Button btnChoosePath;
100
101  }
102}
103
Note: See TracBrowser for help on using the repository browser.