-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathModify.Designer.cs
104 lines (98 loc) · 4.2 KB
/
Modify.Designer.cs
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
namespace RadioEye
{
partial class Modify
{
/// <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(Modify));
this.btn_Ok = new System.Windows.Forms.Button();
this.btn_Cancel = new System.Windows.Forms.Button();
this.txt_Data = new System.Windows.Forms.TextBox();
this.btn_Reset = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btn_Ok
//
this.btn_Ok.Location = new System.Drawing.Point(12, 57);
this.btn_Ok.Name = "btn_Ok";
this.btn_Ok.Size = new System.Drawing.Size(75, 23);
this.btn_Ok.TabIndex = 0;
this.btn_Ok.Text = "OK";
this.btn_Ok.UseVisualStyleBackColor = true;
this.btn_Ok.Click += new System.EventHandler(this.btn_Ok_Click);
//
// btn_Cancel
//
this.btn_Cancel.Location = new System.Drawing.Point(198, 57);
this.btn_Cancel.Name = "btn_Cancel";
this.btn_Cancel.Size = new System.Drawing.Size(75, 23);
this.btn_Cancel.TabIndex = 1;
this.btn_Cancel.Text = "Cancel";
this.btn_Cancel.UseVisualStyleBackColor = true;
this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
//
// txt_Data
//
this.txt_Data.Location = new System.Drawing.Point(12, 17);
this.txt_Data.Name = "txt_Data";
this.txt_Data.Size = new System.Drawing.Size(261, 21);
this.txt_Data.TabIndex = 2;
this.txt_Data.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt_Data_KeyPress);
//
// btn_Reset
//
this.btn_Reset.Location = new System.Drawing.Point(103, 57);
this.btn_Reset.Name = "btn_Reset";
this.btn_Reset.Size = new System.Drawing.Size(75, 23);
this.btn_Reset.TabIndex = 3;
this.btn_Reset.Text = "Reset";
this.btn_Reset.UseVisualStyleBackColor = true;
this.btn_Reset.Click += new System.EventHandler(this.btn_Reset_Click);
//
// Modify
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(285, 92);
this.Controls.Add(this.btn_Reset);
this.Controls.Add(this.txt_Data);
this.Controls.Add(this.btn_Cancel);
this.Controls.Add(this.btn_Ok);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Modify";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Modify";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btn_Ok;
private System.Windows.Forms.Button btn_Cancel;
private System.Windows.Forms.TextBox txt_Data;
private System.Windows.Forms.Button btn_Reset;
}
}