程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 改動鼠標形狀的一小段代碼

改動鼠標形狀的一小段代碼

編輯:關於JSP


主要還是調用了系統的方法,因為實在做鼠標時間是開發的,想了好久才找到,留在這裡,以作紀念。
 public class Grid : GoldSoft.Inf.UI.Controls.Grid.Grid
 {
  /// <summary>
  /// 必需的設計器變量。
  /// </summary>
  private System.ComponentModel.Container components = null;

  public Grid()
  {
   // 該調用是 Windows.Forms 窗體設計器所必需的。
   InitializeComponent();
   // TODO: 在 InitComponent 調用後添加任何初始化
         this.MouseMove += new MouseEventHandler(n_MouseMove);
  }
  private void n_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
  {
         this.Cursor=Cursors.SizeWE;
     //以上用來修改鼠標的形狀,在Cursors加.就可以看到了
         Console.WriteLine("====>   Test  <====  ("+e.X+","+e.Y+")");
  }
  /// <summary>
  /// 清理所有正在使用的資源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if( components != null )
     components.Dispose();
   }
   base.Dispose( disposing );
  }
  #region 組件設計器生成的代碼
  /// <summary>
  /// 設計器支持所需的方法 - 不要使用代碼編輯器
  /// 修改此方法的內容。
  /// </summary>
  private void InitializeComponent()
  {
   components = new System.ComponentModel.Container();
  }
  #endregion
 }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved