在.NET中完成彩色光標與自定義光標
發(fā)表時間:2024-02-11 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]本例子在.NET中實現(xiàn)彩色光標,動畫光標和自定義光標,下面是完整的例子,可以通過命令行編譯即可看到效果。Test.cs using System; using System.Drawing; using System.Windows.Forms; using System.Runtime...
本例子在.NET中實現(xiàn)彩色光標,動畫光標和自定義光標,下面是完整的例子,可以通過命令行編譯即可看到效果。
Test.cs
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Reflection;
namespace ColorCursor
{
/// <summary>
/// 本例子的作用:
/// 在.NET中實現(xiàn)彩色光標,動畫光標和自定義光標。
/// </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;
}
}
}