📄 unprotectform.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 UnprotectForm
{
/// <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(UnprotectForm));
this.passwordLabel = new System.Windows.Forms.Label();
this.passwordTextbox = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// passwordLabel
//
resources.ApplyResources(this.passwordLabel, "passwordLabel");
this.passwordLabel.Name = "passwordLabel";
//
// passwordTextbox
//
resources.ApplyResources(this.passwordTextbox, "passwordTextbox");
this.passwordTextbox.Name = "passwordTextbox";
this.passwordTextbox.UseSystemPasswordChar = true;
//
// okButton
//
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
resources.ApplyResources(this.okButton, "okButton");
this.okButton.Name = "okButton";
//
// cancelButton
//
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.cancelButton, "cancelButton");
this.cancelButton.Name = "cancelButton";
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
//
// UnprotectForm
//
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.passwordTextbox);
this.Controls.Add(this.passwordLabel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "UnprotectForm";
this.ShowInTaskbar = false;
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.Label passwordLabel;
private System.Windows.Forms.TextBox passwordTextbox;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.Button cancelButton;
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -