• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# winForm 自定义鼠标样式的两种方法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

  以前试过在WinForm中自定义鼠标样式,结果显示出来的鼠标变成单色。

  后来百度了下,原来要用API来做。

     首先引入两个命名空间

using System.Runtime.InteropServices;
using System.Reflection;

导入API

        [DllImport("user32.dll")]
        
public static extern IntPtr LoadCursorFromFile(string fileName);

        [DllImport(
"user32.dll")]
        
public static extern IntPtr SetCursor(IntPtr cursorHandle);

        [DllImport(
"user32.dll")]
        
public static extern uint DestroyCursor(IntPtr cursorHandle);

接下来使用自己的鼠标样式

        private void Form1_Load(object sender, EventArgs e)
        {
            Cursor myCursor 
= new Cursor(Cursor.Current.Handle);
            IntPtr colorCursorHandle 
= LoadCursorFromFile("my.cur");//鼠标图标路径
              myCursor.GetType().InvokeMember("handle", BindingFlags.Public |
            BindingFlags.NonPublic 
| BindingFlags.Instance |
            BindingFlags.SetField, 
null, myCursor,
            
new object[] { colorCursorHandle });
            
this.Cursor = myCursor;
        }

      现在介绍另一种不用API方式的,鼠标样式只需要一张背景透明的图片就行了,png或gif格式的

     写个方法

        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(
0000));
            g.DrawImage(cursor, cursor.Width 
- hotX, cursor.Height - hotY, cursor.Width, 
            cursor.Height);

            
this.Cursor = new Cursor(myNewCursor.GetHicon());
           
            g.Dispose();
            myNewCursor.Dispose();
        }

在你想要改变鼠标样式的事件里头使用这个方法就行了

        private void Form1_Load(object sender, EventArgs e)
        {
            Bitmap a
=(Bitmap)Bitmap.FromFile("myCur.png");
            SetCursor(a, 
new Point(00));
        }
       //this.btnBack.FlatStyle = FlatStyle.Flat;    //set the button no frame
       //this.btnBack.FlatAppearance.BorderSize = 0;

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
利用C#爬取煎蛋网图片发布时间:2022-07-10
下一篇:
C#数字金额转换大写金额发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap