首页 > 开发 > 综合 > 正文

C# WinForm编程中的一点小收获(二)

2024-07-21 02:17:32
字体:
来源:转载
供稿:网友
 

资源文件的使用与自定义光标的实现

本文从两个方面讲述.net中自定义光标的实现,部分是参考“孟子”前辈的资料,以示说明。 

    首先要明白一个知识点:光标的分类
    光标分为两大类,一是静态光标(*.cur),一是动态光标(*.ani)。这两类光标又有彩色和单像素之分。一般常见的静态光标多数是单像素的,.net中可以直接支持这种光标。而对于彩色或动态光标则是有256色甚至更高像素组成的动画光标,在.net中若要支持动态光标或彩色光标需要调用win32 api实现。

    1:在.net中利用资源文件实现自定义静态光标(以下为msdn原文)

            // the following generates a cursor from an embedded resource.
            
     // to add a custom cursor, create or use an existing 16x16 bitmap
     //        1. add a new cursor file to your project: 
     //                file->add new item->local project items->cursor file
     //        2. select 16x16 image type:
     //                image->current icon image types->16x16

     // --- to make the custom cursor an embedded resource  ---
            
     // in visual studio:
     //        1. select the cursor file in the solution explorer
     //        2. choose view->properties.
     //        3. in the properties window switch "build action" to "embedded"

     // on the command line:
     //        add the following flag:
     //            /res:cursorfilename.cur,namespace.cursorfilename.cur
     //        
     //        where "namespace" is the namespace in which you want to use the cursor
     //        and   "cursorfilename.cur" is the cursor filename.

     // the following line uses the namespace from the passed-in type
     // and looks for customcursor.mycursor.cur in the assemblies manifest.
     // note: the cursor name is acase sensitive.
     this.cursor = new cursor(gettype(), "mycursor.cur");

    此处需要注意的是在调用的时候,mycursor.cur为资源文件的名称,大小写区分。如下图所示:
 
    则资源文件名称应该为cursor.block.cur,以命名空间的形式来访问资源。

    2:.net中实现自定义彩色光标和动态光标
    以下为引用win32 api函数,用于创建自定义光标、设置光标等操作。

   [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 );

    调用自定义光标则可以如下操作:
    cursor mycursor = new cursor(cursor.current.handle);
  //dinosau2.ani为windows自带的光标:
  intptr colorcursorhandle = loadcursorfromfil(@"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;

    以上方式就是设定自定义光标的实现。当然不管是静态光标还是动态光标都需要自己设计之后方可引用。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表