Form2.Designer.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:4k
- namespace DataTransport
- {
- partial class Form2
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- private System.Windows.Forms.MainMenu mainMenu1;
- /// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
- this.m_txtUserName = new System.Windows.Forms.TextBox();
- this.m_lblUserName = new System.Windows.Forms.Label();
- this.m_lblPassword = new System.Windows.Forms.Label();
- this.m_txtPassword = new System.Windows.Forms.TextBox();
- this.m_btnLogin = new System.Windows.Forms.Button();
- this.m_btnCancel = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // m_txtUserName
- //
- this.m_txtUserName.Location = new System.Drawing.Point(25, 36);
- this.m_txtUserName.Name = "m_txtUserName";
- this.m_txtUserName.Size = new System.Drawing.Size(189, 21);
- this.m_txtUserName.TabIndex = 0;
- //
- // m_lblUserName
- //
- this.m_lblUserName.Location = new System.Drawing.Point(25, 10);
- this.m_lblUserName.Name = "m_lblUserName";
- this.m_lblUserName.Size = new System.Drawing.Size(189, 20);
- this.m_lblUserName.Text = "User Name:";
- //
- // m_lblPassword
- //
- this.m_lblPassword.Location = new System.Drawing.Point(25, 64);
- this.m_lblPassword.Name = "m_lblPassword";
- this.m_lblPassword.Size = new System.Drawing.Size(189, 20);
- this.m_lblPassword.Text = "Password:";
- //
- // m_txtPassword
- //
- this.m_txtPassword.Location = new System.Drawing.Point(25, 88);
- this.m_txtPassword.Name = "m_txtPassword";
- this.m_txtPassword.PasswordChar = '*';
- this.m_txtPassword.Size = new System.Drawing.Size(189, 21);
- this.m_txtPassword.TabIndex = 3;
- //
- // m_btnLogin
- //
- this.m_btnLogin.Location = new System.Drawing.Point(25, 115);
- this.m_btnLogin.Name = "m_btnLogin";
- this.m_btnLogin.Size = new System.Drawing.Size(72, 20);
- this.m_btnLogin.TabIndex = 4;
- this.m_btnLogin.Text = "Login";
- this.m_btnLogin.Click += new System.EventHandler(this.m_btnLogin_Click);
- //
- // m_btnCancel
- //
- this.m_btnCancel.Location = new System.Drawing.Point(104, 116);
- this.m_btnCancel.Name = "m_btnCancel";
- this.m_btnCancel.Size = new System.Drawing.Size(72, 20);
- this.m_btnCancel.TabIndex = 5;
- this.m_btnCancel.Text = "Cancel";
- this.m_btnCancel.Click += new System.EventHandler(this.m_btnCancel_Click);
- //
- // Form2
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.AutoScroll = true;
- this.ClientSize = new System.Drawing.Size(240, 268);
- this.Controls.Add(this.m_btnCancel);
- this.Controls.Add(this.m_btnLogin);
- this.Controls.Add(this.m_txtPassword);
- this.Controls.Add(this.m_lblPassword);
- this.Controls.Add(this.m_lblUserName);
- this.Controls.Add(this.m_txtUserName);
- this.Menu = this.mainMenu1;
- this.Name = "Form2";
- this.Text = "Form2";
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TextBox m_txtUserName;
- private System.Windows.Forms.Label m_lblUserName;
- private System.Windows.Forms.Label m_lblPassword;
- private System.Windows.Forms.TextBox m_txtPassword;
- private System.Windows.Forms.Button m_btnLogin;
- private System.Windows.Forms.Button m_btnCancel;
- }
- }