Files
2026-05-29 10:07:05 +08:00

155 lines
7.6 KiB
C#

namespace MisDataName
{
partial class MainLockForm
{
/// <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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainLockForm));
this.textBox_PassWord = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.button_OK = new System.Windows.Forms.Button();
this.notifyIcon_MainLock = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenuStrip_MainLock = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ToolStripMenuItem_Show = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem_Hide = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem_Exit = new System.Windows.Forms.ToolStripMenuItem();
this.checkBox_ShowPwd = new System.Windows.Forms.CheckBox();
this.contextMenuStrip_MainLock.SuspendLayout();
this.SuspendLayout();
//
// textBox_PassWord
//
this.textBox_PassWord.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox_PassWord.Location = new System.Drawing.Point(62, 123);
this.textBox_PassWord.Name = "textBox_PassWord";
this.textBox_PassWord.Size = new System.Drawing.Size(162, 26);
this.textBox_PassWord.TabIndex = 1;
this.textBox_PassWord.UseSystemPasswordChar = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(78, 81);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(107, 12);
this.label1.TabIndex = 0;
this.label1.Text = "请输入密码解锁MIS";
//
// button_OK
//
this.button_OK.Location = new System.Drawing.Point(107, 200);
this.button_OK.Name = "button_OK";
this.button_OK.Size = new System.Drawing.Size(75, 23);
this.button_OK.TabIndex = 1;
this.button_OK.Text = "OK";
this.button_OK.UseVisualStyleBackColor = true;
this.button_OK.Click += new System.EventHandler(this.button_OK_Click);
//
// notifyIcon_MainLock
//
this.notifyIcon_MainLock.ContextMenuStrip = this.contextMenuStrip_MainLock;
this.notifyIcon_MainLock.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon_MainLock.Icon")));
this.notifyIcon_MainLock.Text = "MisLock";
this.notifyIcon_MainLock.Visible = true;
this.notifyIcon_MainLock.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon_MainLock_MouseDoubleClick);
//
// contextMenuStrip_MainLock
//
this.contextMenuStrip_MainLock.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ToolStripMenuItem_Show,
this.ToolStripMenuItem_Hide,
this.ToolStripMenuItem_Exit});
this.contextMenuStrip_MainLock.Name = "contextMenuStrip_MainLock";
this.contextMenuStrip_MainLock.Size = new System.Drawing.Size(101, 70);
//
// ToolStripMenuItem_Show
//
this.ToolStripMenuItem_Show.Name = "ToolStripMenuItem_Show";
this.ToolStripMenuItem_Show.Size = new System.Drawing.Size(100, 22);
this.ToolStripMenuItem_Show.Text = "显示";
this.ToolStripMenuItem_Show.Click += new System.EventHandler(this.ToolStripMenuItem_Show_Click);
//
// ToolStripMenuItem_Hide
//
this.ToolStripMenuItem_Hide.Name = "ToolStripMenuItem_Hide";
this.ToolStripMenuItem_Hide.Size = new System.Drawing.Size(100, 22);
this.ToolStripMenuItem_Hide.Text = "隐藏";
this.ToolStripMenuItem_Hide.Click += new System.EventHandler(this.ToolStripMenuItem_Hide_Click);
//
// ToolStripMenuItem_Exit
//
this.ToolStripMenuItem_Exit.Name = "ToolStripMenuItem_Exit";
this.ToolStripMenuItem_Exit.Size = new System.Drawing.Size(100, 22);
this.ToolStripMenuItem_Exit.Text = "退出";
this.ToolStripMenuItem_Exit.Click += new System.EventHandler(this.ToolStripMenuItem_Exit_Click);
//
// checkBox_ShowPwd
//
this.checkBox_ShowPwd.AutoSize = true;
this.checkBox_ShowPwd.Location = new System.Drawing.Point(107, 168);
this.checkBox_ShowPwd.Name = "checkBox_ShowPwd";
this.checkBox_ShowPwd.Size = new System.Drawing.Size(72, 16);
this.checkBox_ShowPwd.TabIndex = 2;
this.checkBox_ShowPwd.Text = "显示密码";
this.checkBox_ShowPwd.UseVisualStyleBackColor = true;
this.checkBox_ShowPwd.CheckedChanged += new System.EventHandler(this.checkBox_ShowPwd_CheckedChanged);
//
// MainLockForm
//
this.AcceptButton = this.button_OK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.checkBox_ShowPwd);
this.Controls.Add(this.button_OK);
this.Controls.Add(this.label1);
this.Controls.Add(this.textBox_PassWord);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "MainLockForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MainLockForm";
this.contextMenuStrip_MainLock.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox textBox_PassWord;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button_OK;
private System.Windows.Forms.NotifyIcon notifyIcon_MainLock;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip_MainLock;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_Show;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_Hide;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_Exit;
private System.Windows.Forms.CheckBox checkBox_ShowPwd;
}
}