📄 formevent.designer.cs
字号:
namespace EventExample
{
partial class FormEvent
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
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()
{
this.buttonOK = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.labelDisplay = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// buttonOK
//
this.buttonOK.Location = new System.Drawing.Point(119, 125);
this.buttonOK.Name = "buttonOK";
this.buttonOK.Size = new System.Drawing.Size(75, 23);
this.buttonOK.TabIndex = 0;
this.buttonOK.Text = "提交按钮";
this.buttonOK.UseVisualStyleBackColor = true;
this.buttonOK.MouseLeave += new System.EventHandler(this.buttonOK_MouseLeave);
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
this.buttonOK.MouseEnter += new System.EventHandler(this.buttonOK_MouseEnter);
//
// label1
//
this.label1.Location = new System.Drawing.Point(117, 212);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(90, 22);
this.label1.TabIndex = 1;
this.label1.Text = "这里显示信息!";
//
// labelDisplay
//
this.labelDisplay.ForeColor = System.Drawing.Color.Red;
this.labelDisplay.Location = new System.Drawing.Point(33, 173);
this.labelDisplay.Name = "labelDisplay";
this.labelDisplay.Size = new System.Drawing.Size(247, 20);
this.labelDisplay.TabIndex = 2;
this.labelDisplay.Text = "按钮功能提示!";
this.labelDisplay.Visible = false;
this.labelDisplay.Click += new System.EventHandler(this.labelDisplay_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(82, 48);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(170, 21);
this.textBox1.TabIndex = 3;
this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
//
// FormEvent
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.labelDisplay);
this.Controls.Add(this.label1);
this.Controls.Add(this.buttonOK);
this.MaximizeBox = false;
this.Name = "FormEvent";
this.Text = "事件驱动的界面设计";
this.Load += new System.EventHandler(this.FormEvent_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonOK;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label labelDisplay;
private System.Windows.Forms.TextBox textBox1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -