C# Form实现自定义光标

这篇博客展示了如何在C# Form应用中创建并使用自定义光标。通过提供的完整代码示例,读者可以了解如何在Windows应用程序中自定义光标的详细步骤,并通过编译运行代码来查看实际效果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

下面是完整的例子,可以通过命令行编译即可看到效果。

 

using System;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Reflection;

namespace ColorCursor
{
 
/// <summary>
 
/// 本例子的作用: 在.NET中实现自定义光标。
 
/// </summary>
    public class Form1 : System.Windows.Forms.Form
    {
        [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 );
  
  
        [STAThread]
        
static void Main() 
        {
            Application.Run(
new Form1());
        }
  
        
public Form1()
        {
            Cursor myCursor 
= new Cursor(Cursor.Current.Handle);
            IntPtr colorCursorHandle 
= LoadCursorFromFile(@"C:WINNTCursorsdinosau2.ani" );    
            
//dinosau2.ani为windows自带的光标:

            myCursor.GetType().InvokeMember(
"handle",BindingFlags.Public | 
            BindingFlags.NonPublic 
| BindingFlags.Instance | 
            BindingFlags.SetField,
null,myCursor,
            
new object [] { colorCursorHandle } );
            
this.Cursor = myCursor;
        }
    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值