📄 loginfrm.designer.cs
字号:
namespace AttendManager
{
partial class LoginFrm
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoginFrm));
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtPwd = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btn_Login = new System.Windows.Forms.Button();
this.btn_Cancle = new System.Windows.Forms.Button();
this.comboBox_user = new System.Windows.Forms.ComboBox();
this.用户BindingSource = new System.Windows.Forms.BindingSource(this.components);
this.dataSet1 = new AttendManager.DataSet1();
this.用户TableAdapter = new AttendManager.DataSet1TableAdapters.用户TableAdapter();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.用户BindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Top;
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(294, 43);
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(43, 56);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 1;
this.label1.Text = "用户名:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(43, 91);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 2;
this.label2.Text = "密 码:";
//
// txtPwd
//
this.txtPwd.Location = new System.Drawing.Point(102, 88);
this.txtPwd.Name = "txtPwd";
this.txtPwd.PasswordChar = '*';
this.txtPwd.Size = new System.Drawing.Size(154, 21);
this.txtPwd.TabIndex = 4;
this.txtPwd.UseSystemPasswordChar = true;
this.txtPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPwd_KeyPress);
//
// groupBox1
//
this.groupBox1.Location = new System.Drawing.Point(14, 117);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(266, 8);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
//
// btn_Login
//
this.btn_Login.Location = new System.Drawing.Point(65, 135);
this.btn_Login.Name = "btn_Login";
this.btn_Login.Size = new System.Drawing.Size(75, 23);
this.btn_Login.TabIndex = 6;
this.btn_Login.Text = "确定";
this.btn_Login.UseVisualStyleBackColor = true;
this.btn_Login.Click += new System.EventHandler(this.btn_Login_Click);
//
// btn_Cancle
//
this.btn_Cancle.Location = new System.Drawing.Point(156, 135);
this.btn_Cancle.Name = "btn_Cancle";
this.btn_Cancle.Size = new System.Drawing.Size(75, 23);
this.btn_Cancle.TabIndex = 7;
this.btn_Cancle.Text = "退出";
this.btn_Cancle.UseVisualStyleBackColor = true;
this.btn_Cancle.Click += new System.EventHandler(this.btn_Cancle_Click);
//
// comboBox_user
//
this.comboBox_user.FormattingEnabled = true;
this.comboBox_user.Location = new System.Drawing.Point(102, 53);
this.comboBox_user.Name = "comboBox_user";
this.comboBox_user.Size = new System.Drawing.Size(154, 20);
this.comboBox_user.TabIndex = 8;
this.comboBox_user.SelectedIndexChanged += new System.EventHandler(this.comboBox_user_SelectedIndexChanged);
this.comboBox_user.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBox_user_KeyDown);
//
// 用户BindingSource
//
this.用户BindingSource.DataMember = "用户";
this.用户BindingSource.DataSource = this.dataSet1;
//
// dataSet1
//
this.dataSet1.DataSetName = "DataSet1";
this.dataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// 用户TableAdapter
//
this.用户TableAdapter.ClearBeforeFill = true;
//
// LoginFrm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(294, 170);
this.Controls.Add(this.comboBox_user);
this.Controls.Add(this.btn_Cancle);
this.Controls.Add(this.btn_Login);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.txtPwd);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.pictureBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "LoginFrm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "登录窗口";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmLogin_FormClosing);
this.Load += new System.EventHandler(this.LoginFrm_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.用户BindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtPwd;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btn_Login;
private System.Windows.Forms.Button btn_Cancle;
private System.Windows.Forms.ComboBox comboBox_user;
private AttendManager.DataSet1 dataSet1;
private System.Windows.Forms.BindingSource 用户BindingSource;
private AttendManager.DataSet1TableAdapters.用户TableAdapter 用户TableAdapter;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -