⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 changepasswordform.designer.cs

📁 C#通过读取.txt文档进行运行的小系统
💻 CS
字号:
namespace BikeRentSystem
{
    partial class ChangePassWordForm
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.oldTextBox = new System.Windows.Forms.TextBox();
            this.newFirTextBox = new System.Windows.Forms.TextBox();
            this.newSecTextBox = new System.Windows.Forms.TextBox();
            this.changeButton = new System.Windows.Forms.Button();
            this.loadButton = new System.Windows.Forms.Button();
            this.returnButton = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(31, 25);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(65, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "输入原密码";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(31, 73);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(65, 12);
            this.label2.TabIndex = 1;
            this.label2.Text = "输入新密码";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(31, 125);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(65, 12);
            this.label3.TabIndex = 2;
            this.label3.Text = "确认新密码";
            // 
            // oldTextBox
            // 
            this.oldTextBox.Location = new System.Drawing.Point(140, 16);
            this.oldTextBox.Name = "oldTextBox";
            this.oldTextBox.PasswordChar = '*';
            this.oldTextBox.Size = new System.Drawing.Size(100, 21);
            this.oldTextBox.TabIndex = 3;
            // 
            // newFirTextBox
            // 
            this.newFirTextBox.Location = new System.Drawing.Point(140, 64);
            this.newFirTextBox.Name = "newFirTextBox";
            this.newFirTextBox.PasswordChar = '*';
            this.newFirTextBox.Size = new System.Drawing.Size(100, 21);
            this.newFirTextBox.TabIndex = 4;
            // 
            // newSecTextBox
            // 
            this.newSecTextBox.Location = new System.Drawing.Point(140, 122);
            this.newSecTextBox.Name = "newSecTextBox";
            this.newSecTextBox.PasswordChar = '*';
            this.newSecTextBox.Size = new System.Drawing.Size(100, 21);
            this.newSecTextBox.TabIndex = 5;
            // 
            // changeButton
            // 
            this.changeButton.Location = new System.Drawing.Point(12, 169);
            this.changeButton.Name = "changeButton";
            this.changeButton.Size = new System.Drawing.Size(75, 23);
            this.changeButton.TabIndex = 6;
            this.changeButton.Text = "修改";
            this.changeButton.UseVisualStyleBackColor = true;
            this.changeButton.Click += new System.EventHandler(this.changeButton_Click);
            // 
            // loadButton
            // 
            this.loadButton.Location = new System.Drawing.Point(102, 169);
            this.loadButton.Name = "loadButton";
            this.loadButton.Size = new System.Drawing.Size(75, 23);
            this.loadButton.TabIndex = 7;
            this.loadButton.Text = "登陆";
            this.loadButton.UseVisualStyleBackColor = true;
            this.loadButton.Click += new System.EventHandler(this.loadButton_Click);
            // 
            // returnButton
            // 
            this.returnButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.returnButton.Location = new System.Drawing.Point(193, 169);
            this.returnButton.Name = "returnButton";
            this.returnButton.Size = new System.Drawing.Size(75, 23);
            this.returnButton.TabIndex = 8;
            this.returnButton.Text = "返回";
            this.returnButton.UseVisualStyleBackColor = true;
            this.returnButton.Click += new System.EventHandler(this.returnButton_Click);
            // 
            // ChangePassWordForm
            // 
            this.AcceptButton = this.changeButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.returnButton;
            this.ClientSize = new System.Drawing.Size(280, 228);
            this.Controls.Add(this.returnButton);
            this.Controls.Add(this.loadButton);
            this.Controls.Add(this.changeButton);
            this.Controls.Add(this.newSecTextBox);
            this.Controls.Add(this.newFirTextBox);
            this.Controls.Add(this.oldTextBox);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Name = "ChangePassWordForm";
            this.Text = "ChangePassWordForm";
            this.Load += new System.EventHandler(this.ChangePassWordForm_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.TextBox oldTextBox;
        private System.Windows.Forms.TextBox newFirTextBox;
        private System.Windows.Forms.TextBox newSecTextBox;
        private System.Windows.Forms.Button changeButton;
        private System.Windows.Forms.Button loadButton;
        private System.Windows.Forms.Button returnButton;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -