-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathForm9.Designer.cs
More file actions
132 lines (126 loc) · 5.9 KB
/
Form9.Designer.cs
File metadata and controls
132 lines (126 loc) · 5.9 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
namespace armipsSimpleGui
{
partial class Form9
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form9));
this.label2 = new System.Windows.Forms.Label();
this.textBox_path = new System.Windows.Forms.TextBox();
this.button_browse = new System.Windows.Forms.Button();
this.button_delete = new System.Windows.Forms.Button();
this.button_save = new System.Windows.Forms.Button();
this.button_cancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(8, 15);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(35, 15);
this.label2.TabIndex = 1;
this.label2.Text = "Path:";
//
// textBox_path
//
this.textBox_path.Location = new System.Drawing.Point(49, 14);
this.textBox_path.Name = "textBox_path";
this.textBox_path.ReadOnly = true;
this.textBox_path.Size = new System.Drawing.Size(372, 20);
this.textBox_path.TabIndex = 2;
//
// button_browse
//
this.button_browse.Location = new System.Drawing.Point(427, 13);
this.button_browse.Name = "button_browse";
this.button_browse.Size = new System.Drawing.Size(60, 22);
this.button_browse.TabIndex = 3;
this.button_browse.Text = "Browse";
this.button_browse.UseVisualStyleBackColor = true;
this.button_browse.Click += new System.EventHandler(this.button_browse_Click);
//
// button_delete
//
this.button_delete.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button_delete.ForeColor = System.Drawing.Color.Maroon;
this.button_delete.Location = new System.Drawing.Point(11, 57);
this.button_delete.Name = "button_delete";
this.button_delete.Size = new System.Drawing.Size(75, 23);
this.button_delete.TabIndex = 4;
this.button_delete.Text = "Delete";
this.button_delete.UseVisualStyleBackColor = true;
this.button_delete.Click += new System.EventHandler(this.button_delete_Click);
//
// button_save
//
this.button_save.Location = new System.Drawing.Point(332, 57);
this.button_save.Name = "button_save";
this.button_save.Size = new System.Drawing.Size(75, 23);
this.button_save.TabIndex = 5;
this.button_save.Text = "Save";
this.button_save.UseVisualStyleBackColor = true;
this.button_save.Click += new System.EventHandler(this.button_save_Click);
//
// button_cancel
//
this.button_cancel.Location = new System.Drawing.Point(412, 57);
this.button_cancel.Name = "button_cancel";
this.button_cancel.Size = new System.Drawing.Size(75, 23);
this.button_cancel.TabIndex = 6;
this.button_cancel.Text = "Cancel";
this.button_cancel.UseVisualStyleBackColor = true;
this.button_cancel.Click += new System.EventHandler(this.button_cancel_Click);
//
// Form9
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(493, 88);
this.Controls.Add(this.button_cancel);
this.Controls.Add(this.button_save);
this.Controls.Add(this.button_delete);
this.Controls.Add(this.button_browse);
this.Controls.Add(this.textBox_path);
this.Controls.Add(this.label2);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Form9";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Executable";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBox_path;
private System.Windows.Forms.Button button_browse;
private System.Windows.Forms.Button button_delete;
private System.Windows.Forms.Button button_save;
private System.Windows.Forms.Button button_cancel;
}
}