📄 form1.designer.cs
字号:
namespace ASCII_Code
{
partial class MainWindow
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.HexBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.DecBox = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.CharBox = new System.Windows.Forms.TextBox();
this.button2 = new System.Windows.Forms.Button();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.TopCheck = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// button1
//
this.button1.BackColor = System.Drawing.SystemColors.Control;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.Location = new System.Drawing.Point(92, 67);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 24);
this.button1.TabIndex = 0;
this.button1.TabStop = false;
this.button1.Text = "退出";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(25, 14);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 1;
this.label1.Text = "十六进制";
//
// HexBox
//
this.HexBox.Location = new System.Drawing.Point(27, 35);
this.HexBox.MaxLength = 4;
this.HexBox.Name = "HexBox";
this.HexBox.Size = new System.Drawing.Size(48, 21);
this.HexBox.TabIndex = 1;
this.toolTip1.SetToolTip(this.HexBox, "这里输入十六进制值");
this.HexBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HexBox_KeyUp);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(109, 14);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 1;
this.label2.Text = "十进制";
//
// DecBox
//
this.DecBox.Location = new System.Drawing.Point(105, 35);
this.DecBox.MaxLength = 5;
this.DecBox.Name = "DecBox";
this.DecBox.Size = new System.Drawing.Size(48, 21);
this.DecBox.TabIndex = 2;
this.toolTip1.SetToolTip(this.DecBox, "这里输入十进制值");
this.DecBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.DecBox_KeyUp);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(191, 14);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(59, 12);
this.label3.TabIndex = 1;
this.label3.Text = "ASCII字符";
//
// CharBox
//
this.CharBox.Location = new System.Drawing.Point(196, 35);
this.CharBox.MaxLength = 1;
this.CharBox.Name = "CharBox";
this.CharBox.Size = new System.Drawing.Size(48, 21);
this.CharBox.TabIndex = 3;
this.toolTip1.SetToolTip(this.CharBox, "这里输入要查询的ASCII字符");
this.CharBox.TextChanged += new System.EventHandler(this.CharBox_TextChanged);
//
// button2
//
this.button2.BackColor = System.Drawing.SystemColors.Control;
this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button2.Location = new System.Drawing.Point(183, 67);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 24);
this.button2.TabIndex = 3;
this.button2.TabStop = false;
this.button2.Text = "关于";
this.button2.UseVisualStyleBackColor = false;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// TopCheck
//
this.TopCheck.AutoSize = true;
this.TopCheck.Checked = true;
this.TopCheck.CheckState = System.Windows.Forms.CheckState.Checked;
this.TopCheck.Location = new System.Drawing.Point(15, 75);
this.TopCheck.Name = "TopCheck";
this.TopCheck.Size = new System.Drawing.Size(72, 16);
this.TopCheck.TabIndex = 5;
this.TopCheck.Text = "总在最上";
this.TopCheck.UseVisualStyleBackColor = true;
this.TopCheck.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
// MainWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(272, 105);
this.Controls.Add(this.TopCheck);
this.Controls.Add(this.button2);
this.Controls.Add(this.CharBox);
this.Controls.Add(this.DecBox);
this.Controls.Add(this.HexBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "MainWindow";
this.Text = "ASCII码查询器 Ver:0.1";
this.TopMost = true;
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox HexBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox DecBox;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox CharBox;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.CheckBox TopCheck;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -