码迷,mamicode.com
首页 > Web开发 > 详细

.NET中实现彩色光标、动画光标及自定义光标的方法

时间:2017-11-13 23:10:39      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:添加   dbf   img   c#   main   line   lin   round   csharp   

本文所述实例主要完成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中实现彩色光标、动画光标及自定义光标的方法

本文地址:  http://www.paobuke.com/develop/c-develop/pbk23650.html






相关内容

.NET中实现彩色光标、动画光标及自定义光标的方法

标签:添加   dbf   img   c#   main   line   lin   round   csharp   

原文地址:http://www.cnblogs.com/paobuke/p/7828162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!