AAForm.Designer.cs
3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
namespace ModifyXml
{
partial class AAForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.lblBrowse = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.btnBrowse = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.btnCloseForm = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblBrowse
//
this.lblBrowse.AutoSize = true;
this.lblBrowse.Location = new System.Drawing.Point(27, 41);
this.lblBrowse.Name = "lblBrowse";
this.lblBrowse.Size = new System.Drawing.Size(129, 13);
this.lblBrowse.TabIndex = 0;
this.lblBrowse.Text = "Browse the zipped folder :";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(162, 38);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(319, 20);
this.textBox1.TabIndex = 1;
//
// btnBrowse
//
this.btnBrowse.Location = new System.Drawing.Point(533, 36);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(115, 23);
this.btnBrowse.TabIndex = 2;
this.btnBrowse.Text = "Browse & Convert";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// btnCloseForm
//
this.btnCloseForm.Location = new System.Drawing.Point(220, 143);
this.btnCloseForm.Name = "btnCloseForm";
this.btnCloseForm.Size = new System.Drawing.Size(140, 36);
this.btnCloseForm.TabIndex = 3;
this.btnCloseForm.Text = "Close Form";
this.btnCloseForm.UseVisualStyleBackColor = true;
this.btnCloseForm.Click += new System.EventHandler(this.btnCloseForm_Click);
//
// AAForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(671, 261);
this.Controls.Add(this.btnCloseForm);
this.Controls.Add(this.btnBrowse);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.lblBrowse);
this.Name = "AAForm";
this.Text = "Atlas Anatomy Form";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblBrowse;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button btnBrowse;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Button btnCloseForm;
}
}