手机
当前位置:查字典教程网 >编程开发 >C#教程 >.NET中实现彩色光标、动画光标及自定义光标的方法
.NET中实现彩色光标、动画光标及自定义光标的方法
摘要:本文所述实例主要完成dotNET中实现彩色光标、动画光标及自定义光标的功能。以下是完整的程序实例,可以通过命令行编译可看到运行效果。Test...

本文所述实例主要完成dotNET中实现彩色光标、动画光标及自定义光标的功能。以下是完整的程序实例,可以通过命令行编译可看到运行效果。

Test.cs页面代码如下:

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() { this.Text = "欢迎光临【查字典教程网】:http://www.jb51.net/"; 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; } } }

相信本文所述实例对大家的C#程序设计能够起到一定的帮助作用。

【.NET中实现彩色光标、动画光标及自定义光标的方法】相关文章:

c#中分割字符串的几种方法

c#实现无标题栏窗口的拖动

C#中使用split分割字符串的几种方法小结

VB.NET中Caching的使用方法

基于使用递归推算指定位数的斐波那契数列值的解决方法

C#中实现网段扫描的代码

.net后台获取html控件值的2种方法

C# 改变无边框窗体尺寸大小的方法

C#中一些你可能没用过的调试窗口的方法

深入理解C#实现快捷键(系统热键)响应的方法

精品推荐
分类导航