-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathDialogPSW.Designer.cs
More file actions
126 lines (120 loc) · 5.25 KB
/
DialogPSW.Designer.cs
File metadata and controls
126 lines (120 loc) · 5.25 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
namespace WeCode1._0
{
partial class DialogPSW
{
/// <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.labelInput = new System.Windows.Forms.Label();
this.textBoxInput = new System.Windows.Forms.TextBox();
this.buttonOK = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.labelConfirm = new System.Windows.Forms.Label();
this.textBoxConfirm = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// labelInput
//
this.labelInput.AutoSize = true;
this.labelInput.Location = new System.Drawing.Point(13, 13);
this.labelInput.Name = "labelInput";
this.labelInput.Size = new System.Drawing.Size(65, 12);
this.labelInput.TabIndex = 0;
this.labelInput.Text = "输入密码:";
//
// textBoxInput
//
this.textBoxInput.Location = new System.Drawing.Point(84, 10);
this.textBoxInput.Name = "textBoxInput";
this.textBoxInput.Size = new System.Drawing.Size(156, 21);
this.textBoxInput.TabIndex = 1;
this.textBoxInput.TextChanged += new System.EventHandler(this.textBoxInput_TextChanged);
this.textBoxInput.DoubleClick += new System.EventHandler(this.textBoxInput_DoubleClick);
//
// buttonOK
//
this.buttonOK.Location = new System.Drawing.Point(84, 64);
this.buttonOK.Name = "buttonOK";
this.buttonOK.Size = new System.Drawing.Size(75, 23);
this.buttonOK.TabIndex = 4;
this.buttonOK.Text = "确定";
this.buttonOK.UseVisualStyleBackColor = true;
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(165, 64);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 5;
this.buttonCancel.Text = "取消";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// labelConfirm
//
this.labelConfirm.AutoSize = true;
this.labelConfirm.Location = new System.Drawing.Point(13, 40);
this.labelConfirm.Name = "labelConfirm";
this.labelConfirm.Size = new System.Drawing.Size(65, 12);
this.labelConfirm.TabIndex = 2;
this.labelConfirm.Text = "确认密码:";
//
// textBoxConfirm
//
this.textBoxConfirm.Location = new System.Drawing.Point(84, 37);
this.textBoxConfirm.Name = "textBoxConfirm";
this.textBoxConfirm.Size = new System.Drawing.Size(156, 21);
this.textBoxConfirm.TabIndex = 3;
this.textBoxConfirm.UseSystemPasswordChar = true;
//
// DialogPSW
//
this.AcceptButton = this.buttonOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(267, 98);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonOK);
this.Controls.Add(this.textBoxConfirm);
this.Controls.Add(this.labelConfirm);
this.Controls.Add(this.textBoxInput);
this.Controls.Add(this.labelInput);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "DialogPSW";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "密码";
this.TopMost = true;
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelInput;
private System.Windows.Forms.TextBox textBoxInput;
private System.Windows.Forms.Button buttonOK;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Label labelConfirm;
private System.Windows.Forms.TextBox textBoxConfirm;
}
}