📄 frmprogram.designer.cs
字号:
partial class frmProgram
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProgram));
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.buttonExcute = new System.Windows.Forms.Button();
this.buttonExit = new System.Windows.Forms.Button();
this.textBoxAssembly = new System.Windows.Forms.TextBox();
this.buttonOpenAssembly = new System.Windows.Forms.Button();
this.textBoxSignFile = new System.Windows.Forms.TextBox();
this.buttonOpenSignFile = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.label3 = new System.Windows.Forms.Label();
this.textBoxReplaceLog = new System.Windows.Forms.TextBox();
this.checkBoxResignOnly = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// openFileDialog
//
this.openFileDialog.Multiselect = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(1, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(167, 12);
this.label1.TabIndex = 0;
this.label1.Text = "打开程序集文件(*.exe,*.dll)";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(1, 244);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(155, 12);
this.label2.TabIndex = 1;
this.label2.Text = "打开签名文件(*.snk,*.pfx)";
//
// buttonExcute
//
this.buttonExcute.Location = new System.Drawing.Point(296, 289);
this.buttonExcute.Name = "buttonExcute";
this.buttonExcute.Size = new System.Drawing.Size(66, 23);
this.buttonExcute.TabIndex = 3;
this.buttonExcute.Text = "开始";
this.buttonExcute.UseVisualStyleBackColor = true;
this.buttonExcute.Click += new System.EventHandler(this.buttonExcute_Click);
//
// buttonExit
//
this.buttonExit.Location = new System.Drawing.Point(388, 289);
this.buttonExit.Name = "buttonExit";
this.buttonExit.Size = new System.Drawing.Size(66, 23);
this.buttonExit.TabIndex = 4;
this.buttonExit.Text = "退出";
this.buttonExit.UseVisualStyleBackColor = true;
this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click);
//
// textBoxAssembly
//
this.textBoxAssembly.BackColor = System.Drawing.SystemColors.Window;
this.textBoxAssembly.Location = new System.Drawing.Point(3, 30);
this.textBoxAssembly.Multiline = true;
this.textBoxAssembly.Name = "textBoxAssembly";
this.textBoxAssembly.ReadOnly = true;
this.textBoxAssembly.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBoxAssembly.Size = new System.Drawing.Size(451, 209);
this.textBoxAssembly.TabIndex = 5;
//
// buttonOpenAssembly
//
this.buttonOpenAssembly.Location = new System.Drawing.Point(174, 5);
this.buttonOpenAssembly.Name = "buttonOpenAssembly";
this.buttonOpenAssembly.Size = new System.Drawing.Size(63, 21);
this.buttonOpenAssembly.TabIndex = 6;
this.buttonOpenAssembly.Text = "打开";
this.buttonOpenAssembly.UseVisualStyleBackColor = true;
this.buttonOpenAssembly.Click += new System.EventHandler(this.buttonOpenAssembly_Click);
//
// textBoxSignFile
//
this.textBoxSignFile.BackColor = System.Drawing.SystemColors.Window;
this.textBoxSignFile.Location = new System.Drawing.Point(3, 262);
this.textBoxSignFile.Name = "textBoxSignFile";
this.textBoxSignFile.ReadOnly = true;
this.textBoxSignFile.Size = new System.Drawing.Size(451, 21);
this.textBoxSignFile.TabIndex = 7;
//
// buttonOpenSignFile
//
this.buttonOpenSignFile.Location = new System.Drawing.Point(434, 262);
this.buttonOpenSignFile.Name = "buttonOpenSignFile";
this.buttonOpenSignFile.Size = new System.Drawing.Size(20, 21);
this.buttonOpenSignFile.TabIndex = 9;
this.buttonOpenSignFile.Text = "…";
this.buttonOpenSignFile.UseVisualStyleBackColor = true;
this.buttonOpenSignFile.Click += new System.EventHandler(this.buttonOpenSignFile_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(1, 300);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 11;
this.label3.Text = "替换记录";
//
// textBoxReplaceLog
//
this.textBoxReplaceLog.BackColor = System.Drawing.SystemColors.Window;
this.textBoxReplaceLog.Location = new System.Drawing.Point(3, 316);
this.textBoxReplaceLog.Multiline = true;
this.textBoxReplaceLog.Name = "textBoxReplaceLog";
this.textBoxReplaceLog.ReadOnly = true;
this.textBoxReplaceLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBoxReplaceLog.Size = new System.Drawing.Size(451, 140);
this.textBoxReplaceLog.TabIndex = 12;
//
// checkBoxResignOnly
//
this.checkBoxResignOnly.AutoSize = true;
this.checkBoxResignOnly.Location = new System.Drawing.Point(252, 8);
this.checkBoxResignOnly.Name = "checkBoxResignOnly";
this.checkBoxResignOnly.Size = new System.Drawing.Size(72, 16);
this.checkBoxResignOnly.TabIndex = 13;
this.checkBoxResignOnly.Text = "仅重签名";
this.checkBoxResignOnly.UseVisualStyleBackColor = true;
this.checkBoxResignOnly.CheckedChanged += new System.EventHandler(this.checkBoxResignOnly_CheckedChanged);
//
// frmProgram
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(464, 461);
this.Controls.Add(this.checkBoxResignOnly);
this.Controls.Add(this.textBoxReplaceLog);
this.Controls.Add(this.label3);
this.Controls.Add(this.buttonOpenSignFile);
this.Controls.Add(this.textBoxSignFile);
this.Controls.Add(this.buttonOpenAssembly);
this.Controls.Add(this.textBoxAssembly);
this.Controls.Add(this.buttonExit);
this.Controls.Add(this.buttonExcute);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmProgram";
this.Text = "程序集公钥替换器";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.OpenFileDialog openFileDialog;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button buttonExcute;
private System.Windows.Forms.Button buttonExit;
private System.Windows.Forms.TextBox textBoxAssembly;
private System.Windows.Forms.Button buttonOpenAssembly;
private System.Windows.Forms.TextBox textBoxSignFile;
private System.Windows.Forms.Button buttonOpenSignFile;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox textBoxReplaceLog;
private System.Windows.Forms.CheckBox checkBoxResignOnly;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -