自定义鼠标指针

Posted _小马哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义鼠标指针相关的知识,希望对你有一定的参考价值。

/// <summary>
/// 改变鼠标指针
/// </summary>
/// <param name="cursor"></param>
/// <param name="hotPoint"></param>
public void SetCursor(Bitmap cursor, Point hotPoint)
{
int hotX = hotPoint.X;
int hotY = hotPoint.Y;
Bitmap myNewCursor = new Bitmap(cursor.Width * 2 - hotX, cursor.Height * 2 - hotY);
Graphics g = Graphics.FromImage(myNewCursor);
g.Clear(Color.FromArgb(0, 0, 0, 0));
g.DrawImage(cursor, cursor.Width - hotX, cursor.Height - hotY-21, cursor.Width, cursor.Height);
this.Cursor = new Cursor(myNewCursor.GetHicon());
g.Dispose();
myNewCursor.Dispose();
}

private void pic_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
Bitmap bm = (Bitmap)Bitmap.FromFile("钢笔2_03.png");
SetCursor(bm, new Point(0, 0));
}
}

private void pic_MouseUp(object sender, MouseEventArgs e)
{
Cursor = Cursors.Default;
}

以上是关于自定义鼠标指针的主要内容,如果未能解决你的问题,请参考以下文章

自定义鼠标指针在 IE11 中不起作用

如何设置个性鼠标指针

WPF 创建自定义鼠标光标指针

在Ue4里面使用自定义鼠标

Chart.js - 鼠标悬停时自定义css到数据集

opencv进阶-检测使用鼠标框选的自定义区域