• <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>
  • 在.NET中實現彩色光標,動畫光標和自定義光標

    發表于:2007-05-25來源:作者:點擊數: 標簽:彩色.NET光標動畫自定義
    下面是完整的例子,可以通過命令行編譯即可看到效果。 Test.cs using System;using System.Drawing;using System. Windows .Forms;using System.Runtime.InteropServices;using System.Reflection;namespace ColorCursor{/// /// 本例子的作用:/// 在.NET中

    下面是完整的例子,可以通過命令行編譯即可看到效果。

    Test.cs

    using System; using System.Drawing; using System.<STRONG><A href="http://www.kjueaiud.com/html/75/category-catid-375.html" target="_blank" >Windows</A></STRONG>.Forms; using System.Runtime.InteropServices; using System.Reflection; namespace ColorCursor { /// <summary> /// 本例子的作用: /// 在<a href='http://www.kjueaiud.com/ceshi/ruanjianceshikaifajishu/rjcskf' target='_blank'><u>.NET</u></a>中實現彩色光標,動畫光標和自定義光標。 /// </summary> public class Form1 : System.<a href='http://www.kjueaiud.com/ceshi/down/ceshihuanjing/windows/' target='_blank'><u>Windows</u></a>.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為<STRONG><A href="http://www.kjueaiud.com/html/75/category-catid-375.html" target="_blank" >windows</A></STRONG>自帶的光標: 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://www.kjueaiud.com

    評論列表(網友評論僅供網友表達個人看法,并不表明本站同意其觀點或證實其描述)
    老湿亚洲永久精品ww47香蕉图片_日韩欧美中文字幕北美法律_国产AV永久无码天堂影院_久久婷婷综合色丁香五月

  • <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>