中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
江源县| 全椒县| 太仓市| 璧山县| 蓬莱市| 淅川县| 正阳县| 安溪县| 富裕县| 阜新| 广西| 潜江市| 宽城| 启东市| 苗栗县| 册亨县| 依兰县| 龙州县| 塔城市| 金门县| 郑州市| 垫江县| 古田县| 离岛区| 清河县| 吉林市| 克东县| 集安市| 丰台区| 巍山| 比如县| 武功县| 河北省| 鞍山市| 广宁县| 钟山县| 柳江县| 来凤县| 承德县| 喀喇沁旗| 海门市|