程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> StatusBar有多個子欄時,如何確定鼠標在狀態欄上雙擊時是雙擊哪一個子欄

StatusBar有多個子欄時,如何確定鼠標在狀態欄上雙擊時是雙擊哪一個子欄

編輯:Delphi
  由於TStatusPanel並無鼠標事件,所以只好另想辦法:
  void __fastcall TForm1::StatusBar1MouseDown(TObject *Sender,
  TMouseButton Button, TShiftState Shift, int X, int Y)
  {
  mousex=X;
  }
  
  void __fastcall TForm1::StatusBar1DblClick(TObject *Sender)
  {
  int i,x;
  x=0;
  for(i=0;i<StatusBar1->Panels->Count;i++)
  {
  x+=StatusBar1->Panels->Items[i]->Width;//右邊
  if(mousex<x)break;
  }
  //此時的i已經指明了是哪個子欄
  switch(i)
  {
  case 0:
  break;
  case 1:
  break;
  //.............
  }
  
  }
  
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved