1 namespace HospitalManageSys
6 /// Required designer variable.
8 private System.ComponentModel.IContainer components = null;
11 /// Clean up any resources being used.
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
29 private void InitializeComponent()
31 this.label1 = new System.Windows.Forms.Label();
32 this.label2 = new System.Windows.Forms.Label();
33 this.label3 = new System.Windows.Forms.Label();
34 this.textBox_prePWD = new System.Windows.Forms.TextBox();
35 this.textBox_newPWD = new System.Windows.Forms.TextBox();
36 this.textBox_PWDagain = new System.Windows.Forms.TextBox();
37 this.button_OK = new System.Windows.Forms.Button();
38 this.button_cancel = new System.Windows.Forms.Button();
43 this.label1.AutoSize = true;
44 this.label1.Location = new System.Drawing.Point(77, 56);
45 this.label1.Name = "label1";
46 this.label1.Size = new System.Drawing.Size(53, 12);
47 this.label1.TabIndex = 0;
48 this.label1.Text = "原密码:";
52 this.label2.AutoSize = true;
53 this.label2.Location = new System.Drawing.Point(77, 105);
54 this.label2.Name = "label2";
55 this.label2.Size = new System.Drawing.Size(53, 12);
56 this.label2.TabIndex = 0;
57 this.label2.Text = "新密码:";
61 this.label3.AutoSize = true;
62 this.label3.Location = new System.Drawing.Point(53, 132);
63 this.label3.Name = "label3";
64 this.label3.Size = new System.Drawing.Size(77, 12);
65 this.label3.TabIndex = 0;
66 this.label3.Text = "重复新密码:";
70 this.textBox_prePWD.Location = new System.Drawing.Point(136, 53);
71 this.textBox_prePWD.Name = "textBox_prePWD";
72 this.textBox_prePWD.PasswordChar = '*';
73 this.textBox_prePWD.ShortcutsEnabled = false;
74 this.textBox_prePWD.Size = new System.Drawing.Size(100, 21);
75 this.textBox_prePWD.TabIndex = 1;
76 this.textBox_prePWD.UseSystemPasswordChar = true;
80 this.textBox_newPWD.Location = new System.Drawing.Point(136, 102);
81 this.textBox_newPWD.Name = "textBox_newPWD";
82 this.textBox_newPWD.PasswordChar = '*';
83 this.textBox_newPWD.ShortcutsEnabled = false;
84 this.textBox_newPWD.Size = new System.Drawing.Size(100, 21);
85 this.textBox_newPWD.TabIndex = 2;
86 this.textBox_newPWD.UseSystemPasswordChar = true;
90 this.textBox_PWDagain.Location = new System.Drawing.Point(136, 129);
91 this.textBox_PWDagain.Name = "textBox_PWDagain";
92 this.textBox_PWDagain.PasswordChar = '*';
93 this.textBox_PWDagain.ShortcutsEnabled = false;
94 this.textBox_PWDagain.Size = new System.Drawing.Size(100, 21);
95 this.textBox_PWDagain.TabIndex = 3;
96 this.textBox_PWDagain.UseSystemPasswordChar = true;
100 this.button_OK.Location = new System.Drawing.Point(243, 163);
101 this.button_OK.Name = "button_OK";
102 this.button_OK.Size = new System.Drawing.Size(75, 23);
103 this.button_OK.TabIndex = 4;
104 this.button_OK.Text = "确认";
105 this.button_OK.UseVisualStyleBackColor = true;
106 this.button_OK.Click += new System.EventHandler(this.button_OK_Click);
110 this.button_cancel.Location = new System.Drawing.Point(243, 192);
111 this.button_cancel.Name = "button_cancel";
112 this.button_cancel.Size = new System.Drawing.Size(75, 23);
113 this.button_cancel.TabIndex = 5;
114 this.button_cancel.Text = "取消";
115 this.button_cancel.UseVisualStyleBackColor = true;
116 this.button_cancel.Click += new System.EventHandler(this.button_cancel_Click);
120 this.AcceptButton = this.button_OK;
121 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
122 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
123 this.ClientSize = new System.Drawing.Size(326, 223);
124 this.ControlBox = false;
125 this.Controls.Add(this.button_cancel);
126 this.Controls.Add(this.button_OK);
127 this.Controls.Add(this.textBox_PWDagain);
128 this.Controls.Add(this.textBox_newPWD);
129 this.Controls.Add(this.textBox_prePWD);
130 this.Controls.Add(this.label3);
131 this.Controls.Add(this.label2);
132 this.Controls.Add(this.label1);
133 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
134 this.Name = "Form_PWD";
135 this.ShowIcon = false;
136 this.ShowInTaskbar = false;
137 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
139 this.Load += new System.EventHandler(this.Form_PWD_Load);
140 this.ResumeLayout(false);
141 this.PerformLayout();
147 private System.Windows.Forms.Label label1;
148 private System.Windows.Forms.Label label2;
149 private System.Windows.Forms.Label label3;
150 private System.Windows.Forms.TextBox textBox_prePWD;
151 private System.Windows.Forms.TextBox textBox_newPWD;
152 private System.Windows.Forms.TextBox textBox_PWDagain;
153 private System.Windows.Forms.Button button_OK;
154 private System.Windows.Forms.Button button_cancel;