📄 form1.designer.cs
字号:
namespace WinApp3_8大小写转换
{
partial class Form1
{
/// <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.label1 = new System.Windows.Forms.Label();
this.txtInfo = new System.Windows.Forms.TextBox();
this.btnUpper = new System.Windows.Forms.Button();
this.btnLower = new System.Windows.Forms.Button();
this.btnInit = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(48, 23);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(202, 15);
this.label1.TabIndex = 0;
this.label1.Text = "请输入一些包含字母的字符:";
//
// txtInfo
//
this.txtInfo.Location = new System.Drawing.Point(46, 53);
this.txtInfo.Name = "txtInfo";
this.txtInfo.Size = new System.Drawing.Size(326, 25);
this.txtInfo.TabIndex = 1;
this.txtInfo.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtInfo_KeyUp);
this.txtInfo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtInfo_KeyPress);
//
// btnUpper
//
this.btnUpper.Location = new System.Drawing.Point(46, 97);
this.btnUpper.Name = "btnUpper";
this.btnUpper.Size = new System.Drawing.Size(75, 28);
this.btnUpper.TabIndex = 2;
this.btnUpper.Text = "大写";
this.btnUpper.UseVisualStyleBackColor = true;
this.btnUpper.Click += new System.EventHandler(this.btnUpper_Click);
//
// btnLower
//
this.btnLower.Location = new System.Drawing.Point(176, 97);
this.btnLower.Name = "btnLower";
this.btnLower.Size = new System.Drawing.Size(75, 28);
this.btnLower.TabIndex = 3;
this.btnLower.Text = "小写";
this.btnLower.UseVisualStyleBackColor = true;
this.btnLower.Click += new System.EventHandler(this.btnLower_Click);
//
// btnInit
//
this.btnInit.Location = new System.Drawing.Point(297, 97);
this.btnInit.Name = "btnInit";
this.btnInit.Size = new System.Drawing.Size(75, 28);
this.btnInit.TabIndex = 4;
this.btnInit.Text = "恢复";
this.btnInit.UseVisualStyleBackColor = true;
this.btnInit.Click += new System.EventHandler(this.btnInit_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(418, 162);
this.Controls.Add(this.btnInit);
this.Controls.Add(this.btnLower);
this.Controls.Add(this.btnUpper);
this.Controls.Add(this.txtInfo);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "大小写转换";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtInfo;
private System.Windows.Forms.Button btnUpper;
private System.Windows.Forms.Button btnLower;
private System.Windows.Forms.Button btnInit;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -