·您的位置: 首页 » 资源教程 » 编程开发 » ASP.NET » 在.NET中实现彩色光标,动画光标和自定义光标

在.NET中实现彩色光标,动画光标和自定义光标

类别: ASP.NET教程  评论数:0 总得分:0
面是完整的例子,可以通过命令行编译即可看到效果。

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://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;
}
}
}




-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1