1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

167 lines
7.2 KiB
C#

using System.Drawing;
using System.Windows.Forms;
namespace HighWayIot.Winform.MainForm
{
partial class LoginForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoginForm));
this.Login = new System.Windows.Forms.Button();
this.UserText = new System.Windows.Forms.TextBox();
this.PassText = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label3 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// Login
//
this.Login.Location = new System.Drawing.Point(92, 127);
this.Login.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Login.Name = "Login";
this.Login.Size = new System.Drawing.Size(82, 28);
this.Login.TabIndex = 0;
this.Login.Text = "登录";
this.Login.UseVisualStyleBackColor = true;
this.Login.Click += new System.EventHandler(this.Login_Click);
//
// UserText
//
this.UserText.Location = new System.Drawing.Point(91, 29);
this.UserText.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.UserText.Name = "UserText";
this.UserText.Size = new System.Drawing.Size(146, 21);
this.UserText.TabIndex = 1;
this.UserText.Text = "admin";
//
// PassText
//
this.PassText.Location = new System.Drawing.Point(91, 71);
this.PassText.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.PassText.Name = "PassText";
this.PassText.PasswordChar = '●';
this.PassText.Size = new System.Drawing.Size(146, 21);
this.PassText.TabIndex = 2;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(34, 31);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 3;
this.label1.Text = "用户名:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(44, 74);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 4;
this.label2.Text = "密码:";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.PassText);
this.groupBox1.Controls.Add(this.UserText);
this.groupBox1.Controls.Add(this.Login);
this.groupBox1.Location = new System.Drawing.Point(283, 82);
this.groupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.groupBox1.Size = new System.Drawing.Size(273, 173);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "用户登录";
//
// pictureBox1
//
this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pictureBox1.Image = global::HighWayIot.Winform.Properties.Resources.MesnacLogoHighPixel;
this.pictureBox1.Location = new System.Drawing.Point(50, 27);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(174, 189);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 6;
this.pictureBox1.TabStop = false;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label3.Location = new System.Drawing.Point(287, 27);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(264, 28);
this.label3.TabIndex = 7;
this.label3.Text = "开炼机成型机数据管理系统";
//
// LoginForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(568, 266);
this.Controls.Add(this.label3);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.groupBox1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "LoginForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "大连软控开炼机成型机数据管理系统 - 登录界面";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Button Login;
private TextBox UserText;
private TextBox PassText;
private Label label1;
private Label label2;
private GroupBox groupBox1;
private PictureBox pictureBox1;
private Label label3;
}
}