91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C#實現繪制鼠標的示例代碼

c#
小云
120
2023-08-10 11:36:33
欄目: 編程語言

下面是一個簡單的 C# 示例代碼,用于繪制鼠標的移動軌跡:

using System;
using System.Drawing;
using System.Windows.Forms;
public class MouseDrawForm : Form
{
private Point previousPoint;
public MouseDrawForm()
{
InitializeComponent();
}
private void InitializeComponent()
{
this.SuspendLayout();
//
// MouseDrawForm
//
this.ClientSize = new System.Drawing.Size(800, 600);
this.Name = "MouseDrawForm";
this.Text = "Mouse Draw";
this.ResumeLayout(false);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseDrawForm_MouseMove);
this.Paint += new System.Windows.Forms.PaintEventHandler(this.MouseDrawForm_Paint);
}
private void MouseDrawForm_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
Graphics g = this.CreateGraphics();
Pen pen = new Pen(Color.Black, 2);
g.DrawLine(pen, previousPoint, e.Location);
previousPoint = e.Location;
g.Dispose();
}
}
private void MouseDrawForm_Paint(object sender, PaintEventArgs e)
{
e.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
}
[STAThread]
public static void Main()
{
Application.Run(new MouseDrawForm());
}
}

這個示例代碼創建了一個繼承自 FormMouseDrawForm 類,用于繪制鼠標的移動軌跡。在 MouseDrawForm 的構造函數中,設置窗體的大小和標題。然后,通過重寫 MouseDrawForm_MouseMove 方法,在鼠標移動時獲取鼠標的當前位置,并在窗體上繪制一條線段,連接上一個位置和當前位置。在 MouseDrawForm_Paint 方法中設置了繪圖的平滑模式。

Main 方法中創建了一個 MouseDrawForm 實例,并使用 Application.Run 方法運行應用程序的消息循環,以便處理窗體的事件。

0
商城县| 馆陶县| 焉耆| 长兴县| 忻城县| 大渡口区| 武清区| 报价| 西贡区| 遂溪县| 渭源县| 平果县| 蒙城县| 敖汉旗| 宣汉县| 霍林郭勒市| 英德市| 南投市| 石台县| 松滋市| 彭山县| 宜兰县| 桦南县| 沐川县| 六盘水市| 隆昌县| 澎湖县| 临夏县| 靖远县| 饶河县| 五原县| 贵德县| 平舆县| 惠安县| 安泽县| 栾城县| 策勒县| 唐河县| 克东县| 云浮市| 广河县|