📄 passwordform.designer.cs
字号:
//***************************************************************************
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// This code sample is provided "AS IS" without warranty of any kind.
//
//***************************************************************************
namespace DocumentProtector
{
partial class PasswordForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
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(PasswordForm));
this.setPasswordGroupbox = new System.Windows.Forms.GroupBox();
this.confirmPasswordTextbox = new System.Windows.Forms.TextBox();
this.confirmPasswordLabel = new System.Windows.Forms.Label();
this.passwordTextbox = new System.Windows.Forms.TextBox();
this.passwordLabel = new System.Windows.Forms.Label();
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.setPasswordGroupbox.SuspendLayout();
this.SuspendLayout();
//
// setPasswordGroupbox
//
this.setPasswordGroupbox.Controls.Add(this.confirmPasswordTextbox);
this.setPasswordGroupbox.Controls.Add(this.confirmPasswordLabel);
this.setPasswordGroupbox.Controls.Add(this.passwordTextbox);
this.setPasswordGroupbox.Controls.Add(this.passwordLabel);
resources.ApplyResources(this.setPasswordGroupbox, "setPasswordGroupbox");
this.setPasswordGroupbox.Name = "setPasswordGroupbox";
this.setPasswordGroupbox.TabStop = false;
//
// confirmPasswordTextbox
//
resources.ApplyResources(this.confirmPasswordTextbox, "confirmPasswordTextbox");
this.confirmPasswordTextbox.Name = "confirmPasswordTextbox";
this.confirmPasswordTextbox.UseSystemPasswordChar = true;
//
// confirmPasswordLabel
//
resources.ApplyResources(this.confirmPasswordLabel, "confirmPasswordLabel");
this.confirmPasswordLabel.Name = "confirmPasswordLabel";
//
// passwordTextbox
//
resources.ApplyResources(this.passwordTextbox, "passwordTextbox");
this.passwordTextbox.Name = "passwordTextbox";
this.passwordTextbox.UseSystemPasswordChar = true;
//
// passwordLabel
//
resources.ApplyResources(this.passwordLabel, "passwordLabel");
this.passwordLabel.Name = "passwordLabel";
//
// okButton
//
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
resources.ApplyResources(this.okButton, "okButton");
this.okButton.Name = "okButton";
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// cancelButton
//
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.cancelButton, "cancelButton");
this.cancelButton.Name = "cancelButton";
//
// PasswordForm
//
this.AcceptButton = this.okButton;
resources.ApplyResources(this, "$this");
this.CancelButton = this.cancelButton;
this.ControlBox = false;
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.Controls.Add(this.setPasswordGroupbox);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PasswordForm";
this.ShowInTaskbar = false;
this.setPasswordGroupbox.ResumeLayout(false);
this.setPasswordGroupbox.PerformLayout();
this.ResumeLayout(false);
}
private System.Windows.Forms.GroupBox setPasswordGroupbox;
private System.Windows.Forms.Label passwordLabel;
private System.Windows.Forms.TextBox passwordTextbox;
private System.Windows.Forms.Label confirmPasswordLabel;
private System.Windows.Forms.TextBox confirmPasswordTextbox;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.Button cancelButton;
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -