博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在.NET中实现彩色光标/动画光标和自定义光标[转]
阅读量:6379 次
发布时间:2019-06-23

本文共 1102 字,大约阅读时间需要 3 分钟。

下面是完整的例子,可以通过命令行编译即可看到效果。Test.csusing System;using System.Drawing;using System.Windows.Forms;using System.Runtime.InteropServices;using System.Reflection;namespace ColorCursor{ ///  /// 本例子的作用: /// 在.NET中实现彩色光标,动画光标和自定义光标。 ///  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()  {  this.Text = "欢迎光临【孟宪会之精彩世界】:http://dotnet.aspx.cc/";  Cursor myCursor = new Cursor(Cursor.Current.Handle);  //dinosau2.ani为windows自带的光标:  IntPtr colorCursorHandle = LoadCursorFromFile(@"C:/WINNT/Cursors/dinosau2.ani" );  myCursor.GetType().InvokeMember("handle",BindingFlags.Public |    BindingFlags.NonPublic | BindingFlags.Instance |    BindingFlags.SetField,null,myCursor,   new object [] { colorCursorHandle } );  this.Cursor = myCursor;  } }}

 

转载地址:http://rmqqa.baihongyu.com/

你可能感兴趣的文章
《Windows Server 2008 R2系统管理实战》前言与内容提要
查看>>
轻巧的网络流量实时监控工具NTOPNG
查看>>
Access、Sql 获取当前插入的主键ID
查看>>
聚类算法之DBScan(Java实现)
查看>>
为什么要使用AOP?
查看>>
VC :模板类
查看>>
对C++中string类型的总结
查看>>
Oracle发布公共云Public Cloud
查看>>
eclipse高亮显示
查看>>
Shell 操作数据库
查看>>
if lte IE if gte IE 浏览器兼容
查看>>
基于Lumisoft.NET组件和.NET API实现邮件发送功能的对比
查看>>
C#数据库访问技术之DATAREADER对象读取数据
查看>>
各种排序方法
查看>>
编译时程序透彻理解异常并合理使用异常
查看>>
2013年5月18日星期六
查看>>
js 字符串操作函数集合
查看>>
nullnullCF 312B(Archer-等比数列极限求和)
查看>>
消息函数windows 程序设计 第三章 (下)
查看>>
Javascript 坦克大战
查看>>