📄 mainform.designer.cs
字号:
namespace MouseEvents
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.m_lstMessage = new System.Windows.Forms.ListView();
this.m_colEvent = new System.Windows.Forms.ColumnHeader();
this.m_colX = new System.Windows.Forms.ColumnHeader();
this.m_colY = new System.Windows.Forms.ColumnHeader();
this.m_colButton = new System.Windows.Forms.ColumnHeader();
this.SuspendLayout();
//
// m_lstMessage
//
this.m_lstMessage.Columns.Add(this.m_colEvent);
this.m_lstMessage.Columns.Add(this.m_colX);
this.m_lstMessage.Columns.Add(this.m_colY);
this.m_lstMessage.Columns.Add(this.m_colButton);
this.m_lstMessage.Location = new System.Drawing.Point(0, 122);
this.m_lstMessage.Name = "m_lstMessage";
this.m_lstMessage.Size = new System.Drawing.Size(237, 143);
this.m_lstMessage.TabIndex = 0;
this.m_lstMessage.View = System.Windows.Forms.View.Details;
//
// m_colEvent
//
this.m_colEvent.Text = "Event";
this.m_colEvent.Width = 94;
//
// m_colX
//
this.m_colX.Text = "X";
this.m_colX.Width = 39;
//
// m_colY
//
this.m_colY.Text = "Y";
this.m_colY.Width = 36;
//
// m_colButton
//
this.m_colButton.Text = "Button";
this.m_colButton.Width = 61;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.m_lstMessage);
this.Menu = this.mainMenu1;
this.Name = "MainForm";
this.Text = "Mouse Events";
this.DoubleClick += new System.EventHandler(this.MainForm_DoubleClick);
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseUp);
this.Click += new System.EventHandler(this.MainForm_Click);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseMove);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseDown);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView m_lstMessage;
private System.Windows.Forms.ColumnHeader m_colEvent;
private System.Windows.Forms.ColumnHeader m_colX;
private System.Windows.Forms.ColumnHeader m_colY;
private System.Windows.Forms.ColumnHeader m_colButton;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -