📄 frmmain.designer.cs
字号:
namespace EncryptDecrypt
{
partial class FrmMain
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.btnLoad = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.dlgOpenLicense = new System.Windows.Forms.OpenFileDialog();
this.dlgSaveLicense = new System.Windows.Forms.SaveFileDialog();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.dtpEndTime = new System.Windows.Forms.DateTimePicker();
this.dtpStartTime = new System.Windows.Forms.DateTimePicker();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.Key = new System.Windows.Forms.Label();
this.txbkey = new System.Windows.Forms.TextBox();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// btnLoad
//
this.btnLoad.Location = new System.Drawing.Point(296, 22);
this.btnLoad.Name = "btnLoad";
this.btnLoad.Size = new System.Drawing.Size(75, 23);
this.btnLoad.TabIndex = 0;
this.btnLoad.Text = "Load";
this.btnLoad.UseVisualStyleBackColor = true;
this.btnLoad.Click += new System.EventHandler(this.button1_Click);
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(296, 51);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 1;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// dlgOpenLicense
//
this.dlgOpenLicense.FileName = "openFileDialog1";
this.dlgOpenLicense.Filter = "license files (*.lic)|*.lic";
this.dlgOpenLicense.Title = "Select license file";
//
// dlgSaveLicense
//
this.dlgSaveLicense.FileName = "unknown.lic";
this.dlgSaveLicense.Filter = "license files (*.lic)|*.lic";
this.dlgSaveLicense.Title = "Input license file name";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txbkey);
this.groupBox1.Controls.Add(this.Key);
this.groupBox1.Controls.Add(this.dtpEndTime);
this.groupBox1.Controls.Add(this.dtpStartTime);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(267, 145);
this.groupBox1.TabIndex = 10;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Settings";
//
// dtpEndTime
//
this.dtpEndTime.Location = new System.Drawing.Point(89, 89);
this.dtpEndTime.Name = "dtpEndTime";
this.dtpEndTime.Size = new System.Drawing.Size(126, 21);
this.dtpEndTime.TabIndex = 13;
//
// dtpStartTime
//
this.dtpStartTime.Location = new System.Drawing.Point(89, 58);
this.dtpStartTime.Name = "dtpStartTime";
this.dtpStartTime.Size = new System.Drawing.Size(126, 21);
this.dtpStartTime.TabIndex = 12;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(24, 93);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 12);
this.label2.TabIndex = 11;
this.label2.Text = "EndTime";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(24, 62);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(59, 12);
this.label1.TabIndex = 10;
this.label1.Text = "StartTime";
//
// Key
//
this.Key.AutoSize = true;
this.Key.Location = new System.Drawing.Point(24, 34);
this.Key.Name = "Key";
this.Key.Size = new System.Drawing.Size(41, 12);
this.Key.TabIndex = 14;
this.Key.Text = "label3";
//
// txbkey
//
this.txbkey.Location = new System.Drawing.Point(89, 31);
this.txbkey.Name = "txbkey";
this.txbkey.Size = new System.Drawing.Size(126, 21);
this.txbkey.TabIndex = 15;
this.txbkey.Text = "1q2w>t";
//
// FrmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(388, 173);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.btnLoad);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmMain";
this.Text = "License configuration";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnLoad;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.OpenFileDialog dlgOpenLicense;
private System.Windows.Forms.SaveFileDialog dlgSaveLicense;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.DateTimePicker dtpEndTime;
private System.Windows.Forms.DateTimePicker dtpStartTime;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txbkey;
private System.Windows.Forms.Label Key;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -