📄 form1.designer.cs
字号:
namespace shubiao
{
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.lb_mouse = new System.Windows.Forms.Label();
this.lb_mouse_a = new System.Windows.Forms.Label();
this.lb_keyboard = new System.Windows.Forms.Label();
this.lb_keyboard_a = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lb_mouse
//
this.lb_mouse.AutoSize = true;
this.lb_mouse.Location = new System.Drawing.Point(24, 18);
this.lb_mouse.Name = "lb_mouse";
this.lb_mouse.Size = new System.Drawing.Size(67, 13);
this.lb_mouse.TabIndex = 0;
this.lb_mouse.Text = "鼠标的位置";
//
// lb_mouse_a
//
this.lb_mouse_a.AutoSize = true;
this.lb_mouse_a.Location = new System.Drawing.Point(159, 18);
this.lb_mouse_a.Name = "lb_mouse_a";
this.lb_mouse_a.Size = new System.Drawing.Size(28, 13);
this.lb_mouse_a.TabIndex = 1;
this.lb_mouse_a.Text = "(0,0)";
//
// lb_keyboard
//
this.lb_keyboard.AutoSize = true;
this.lb_keyboard.Location = new System.Drawing.Point(24, 58);
this.lb_keyboard.Name = "lb_keyboard";
this.lb_keyboard.Size = new System.Drawing.Size(79, 13);
this.lb_keyboard.TabIndex = 2;
this.lb_keyboard.Text = "按下的键盘键";
//
// lb_keyboard_a
//
this.lb_keyboard_a.AutoSize = true;
this.lb_keyboard_a.Location = new System.Drawing.Point(159, 58);
this.lb_keyboard_a.Name = "lb_keyboard_a";
this.lb_keyboard_a.Size = new System.Drawing.Size(67, 13);
this.lb_keyboard_a.TabIndex = 3;
this.lb_keyboard_a.Text = "未按下按键";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.lb_keyboard_a);
this.Controls.Add(this.lb_keyboard);
this.Controls.Add(this.lb_mouse_a);
this.Controls.Add(this.lb_mouse);
this.Name = "Form1";
this.Text = "获取鼠标及键盘";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lb_mouse;
private System.Windows.Forms.Label lb_mouse_a;
private System.Windows.Forms.Label lb_keyboard;
private System.Windows.Forms.Label lb_keyboard_a;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -