真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何自定義Winform應(yīng)用程序的鼠標(biāo)圖片-創(chuàng)新互聯(lián)

如何自定義Winform應(yīng)用程序的鼠標(biāo)圖片?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

成都創(chuàng)新互聯(lián)公司是一家專注于成都網(wǎng)站建設(shè)、做網(wǎng)站與策劃設(shè)計(jì),洞頭網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:洞頭等地區(qū)。洞頭做網(wǎng)站價(jià)格咨詢:18980820575

首先,建立圖片與鼠標(biāo)的對(duì)應(yīng)關(guān)系。

class MouseStyle
{
  [DllImport("user32.dll")]
  public static extern IntPtr SetCursor(IntPtr cursorHandle);


  static MouseStyle()
  {
    InitMouseStyle();
  }

  private static void InitMouseStyle()
  {
    if (Hand == null)
    {
      Hand = SetCursor("Image//Hand.png");
    }
    if (Arrow == null)
    {
      Arrow = SetCursor("Image//Arrow.png");
    }
  }
  /// 
  /// 鼠標(biāo)手型樣式
  /// 
  public static Cursor Hand = null;

  /// 
  /// 鼠標(biāo)指針樣式
  /// 
  public static Cursor Arrow = null;

  /// 
  /// 設(shè)置鼠標(biāo)樣式
  /// 
  /// 自定義的鼠標(biāo)樣式文件
  /// 鼠標(biāo)樣式
  private static Cursor SetCursor(string fileName)
  {
    //文件的絕對(duì)路徑,在debug下
    var path = System.IO.Path.GetFullPath(fileName) ;

    //畫(huà)圖
    Bitmap bit = (Bitmap)Bitmap.FromFile(path, true);
    Bitmap myNewCursor = new Bitmap(bit.Width, bit.Height);
    Graphics g = Graphics.FromImage(myNewCursor);
    g.Clear(Color.FromArgb(0, 0, 0, 0));

    //箭頭和手型有點(diǎn)不一樣
    if (System.IO.Path.GetFileName(fileName).Equals("Hand.png"))
    {
      g.DrawImage(bit, bit.Width / 2 - 15, bit.Height / 2, bit.Width / 2, bit.Height / 2);
    }
    else
    {
      g.DrawImage(bit, bit.Width / 2 - 15, bit.Height / 2, bit.Width / 2, bit.Height / 2);
    }

    Cursor cursor;
    //獲取圖片的句柄
    try
    {
      cursor = new Cursor(myNewCursor.GetHicon());
    }
    catch
    {
      cursor = new Cursor(Icon.FromHandle(myNewCursor.GetHicon()).Handle);
    }

    //釋放資源
    g.Dispose();

    return cursor;
  }
}

網(wǎng)站題目:如何自定義Winform應(yīng)用程序的鼠標(biāo)圖片-創(chuàng)新互聯(lián)
網(wǎng)站網(wǎng)址:http://weahome.cn/article/jjgge.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部