|
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
{
|
|
|
|
|
Login = new Button();
|
|
|
|
|
UserText = new TextBox();
|
|
|
|
|
PassText = new TextBox();
|
|
|
|
|
label1 = new Label();
|
|
|
|
|
label2 = new Label();
|
|
|
|
|
groupBox1 = new GroupBox();
|
|
|
|
|
groupBox1.SuspendLayout();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// Login
|
|
|
|
|
//
|
|
|
|
|
Login.Location = new Point(79, 159);
|
|
|
|
|
Login.Name = "Login";
|
|
|
|
|
Login.Size = new Size(96, 39);
|
|
|
|
|
Login.TabIndex = 0;
|
|
|
|
|
Login.Text = "登录";
|
|
|
|
|
Login.UseVisualStyleBackColor = true;
|
|
|
|
|
Login.Click += Login_Click_1;
|
|
|
|
|
//
|
|
|
|
|
// UserText
|
|
|
|
|
//
|
|
|
|
|
UserText.Location = new Point(108, 39);
|
|
|
|
|
UserText.Name = "UserText";
|
|
|
|
|
UserText.Size = new Size(100, 23);
|
|
|
|
|
UserText.TabIndex = 1;
|
|
|
|
|
UserText.Text = "admin";
|
|
|
|
|
//
|
|
|
|
|
// PassText
|
|
|
|
|
//
|
|
|
|
|
PassText.Location = new Point(108, 100);
|
|
|
|
|
PassText.Name = "PassText";
|
|
|
|
|
PassText.Size = new Size(100, 23);
|
|
|
|
|
PassText.TabIndex = 2;
|
|
|
|
|
PassText.Text = "admin";
|
|
|
|
|
//
|
|
|
|
|
// label1
|
|
|
|
|
//
|
|
|
|
|
label1.AutoSize = true;
|
|
|
|
|
label1.Location = new Point(42, 42);
|
|
|
|
|
label1.Name = "label1";
|
|
|
|
|
label1.Size = new Size(56, 17);
|
|
|
|
|
label1.TabIndex = 3;
|
|
|
|
|
label1.Text = "用户名:";
|
|
|
|
|
//
|
|
|
|
|
// label2
|
|
|
|
|
//
|
|
|
|
|
label2.AutoSize = true;
|
|
|
|
|
label2.Location = new Point(54, 103);
|
|
|
|
|
label2.Name = "label2";
|
|
|
|
|
label2.Size = new Size(44, 17);
|
|
|
|
|
label2.TabIndex = 4;
|
|
|
|
|
label2.Text = "密码:";
|
|
|
|
|
//
|
|
|
|
|
// groupBox1
|
|
|
|
|
//
|
|
|
|
|
groupBox1.Controls.Add(label2);
|
|
|
|
|
groupBox1.Controls.Add(label1);
|
|
|
|
|
groupBox1.Controls.Add(PassText);
|
|
|
|
|
groupBox1.Controls.Add(UserText);
|
|
|
|
|
groupBox1.Controls.Add(Login);
|
|
|
|
|
groupBox1.Location = new Point(376, 61);
|
|
|
|
|
groupBox1.Name = "groupBox1";
|
|
|
|
|
groupBox1.Size = new Size(249, 218);
|
|
|
|
|
groupBox1.TabIndex = 5;
|
|
|
|
|
groupBox1.TabStop = false;
|
|
|
|
|
groupBox1.Text = "用户登录";
|
|
|
|
|
//
|
|
|
|
|
// LoginForm
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 17F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(693, 355);
|
|
|
|
|
Controls.Add(groupBox1);
|
|
|
|
|
Name = "LoginForm";
|
|
|
|
|
Text = "大连软控开炼机成型机数据管理系统 - 登录界面";
|
|
|
|
|
groupBox1.ResumeLayout(false);
|
|
|
|
|
groupBox1.PerformLayout();
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private Button Login;
|
|
|
|
|
private TextBox UserText;
|
|
|
|
|
private TextBox PassText;
|
|
|
|
|
private Label label1;
|
|
|
|
|
private Label label2;
|
|
|
|
|
private GroupBox groupBox1;
|
|
|
|
|
}
|
|
|
|
|
}
|