国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
CToolTipCtrl使用詳細(xì)解說 - zhoubl668的專欄:遠(yuǎn)帆,夢之帆! - C...

ToolTip是Win32中一個通用控件,MFC中為其生成了一個類CToolTipCtrl,總的說來其使用方法是較簡單的,下面講一下它的一般用法和高級用法。

一般用法步驟:
1. 添加CToolTipCtrl成員變量 m_tt。
2. 在父窗口中調(diào)用EnableToolTips(TRUE);
3. 在窗口的OnCreate(或者其他適當(dāng)?shù)奈恢茫┲邢騎oolTip中添加需要顯示Tip的子窗口,并同時指定相應(yīng)的顯示字串CToolTipCtrl::AddTool(pWnd,”string to display”)。
4. 重載父窗口的 BOOL PreTranslateMessage(MSG* pMsg) ,在函數(shù)中調(diào)用 m_tt.RelayEvent(pMsg)。

下面假設(shè)在窗口CWndYour中使用CToolTipCtrl

在類定義中添加變量說明:

  1. class CWndYour:xxx
  2. {
  3.  CToolTipCtrl m_tt;
  4. }

在OnCreate中添加需要顯示Tip的子窗口

  1. CWndYour::OnCreate(....)
  2. {
  3.  EnableToolTips(TRUE);
  4.  m_tt.Create(this);
  5.  m_tt.Activate(TRUE);
  6.  
  7.  CWnd* pW=GetDlgItem(IDC_CHECK1);//得到窗口指針
  8.  m_tt.AddTool(pW,"Check1"); //添加
  9. }

在BOOL PreTranslateMessage(MSG* pMsg)中添加代碼

  1. BOOL CWndYour::PreTranslateMessage(MSG* pMsg)
  2. {
  3.  {
  4.   m_tt.RelayEvent(pMsg);
  5.  }
  6.  return CParentClass::PreTranslateMessage(pMsg);
  7. }

這樣當(dāng)鼠標(biāo)移動到相應(yīng)的子窗口上時會顯示出相應(yīng)的ToolTip。

動態(tài)改變ToolTip的顯示內(nèi)容的方法及步驟:

1.上面所講的1、2、4步驟。
2.在增加ToolTip時不指定顯示的字串,而是使用LPSTR_TEXTCALLBACK。
3.在窗口中增加消息映射 ON_NOTIFY_EX( TTN_NEEDTEXT, 0, SetTipText )。
4.在窗口中增加一個函數(shù)用于動態(tài)提供顯示內(nèi)容,其原型為 BOOL SetTipText( UINT id, NMHDR * pTTTStruct, LRESULT * pResult ),下面的代碼可以根據(jù)傳入的參數(shù)判定應(yīng)該顯示的內(nèi)容。

  1. BOOL CWndYour::SetTipText( UINT id, NMHDR * pTTTStruct, LRESULT * pResult )
  2. {
  3.  TOOLTIPTEXT *pTTT = (TOOLTIPTEXT *)pTTTStruct;   
  4.  UINT nID =pTTTStruct->idFrom; //得到相應(yīng)窗口ID,有可能是HWND
  5.  if (pTTT->uFlags & TTF_IDISHWND)    //表明nID是否為HWND
  6.  {
  7.   nID = ::GetDlgCtrlID((HWND)nID);//從HWND得到ID值,當(dāng)然你也可以通過HWND值來判斷
  8.   switch(nID)
  9.   case(IDC_YOUR_CONTROL1)       
  10.    strcpy(pTTT->lpszText,your_string1);//設(shè)置
  11.    return TRUE;
  12.   break;
  13.   case(IDC_YOUR_CONTROL2)   //設(shè)置相應(yīng)的顯示字串
  14.    return TRUE;
  15.   break;
  16.  }
  17.  return(FALSE);
  18. }

作者: 聞怡洋 wyy_cq@188.net
原文: http://hi.baidu.com/fateyeah/blog/item/fc7c07b37ab250a7d9335aa7.html

/////////////////////////////////////////////////////////////////////////////////////////////////////////////

如何操縱CToolTipCtrl來給自己的控件添加tool tip呢?MSDN給出了答案。

創(chuàng)建并操縱一個CToolTipCtrl
創(chuàng)建一個CToolTipCtrl的對象.

調(diào)用Create函數(shù)來創(chuàng)建windows通用提示控件并使之與CToolTipCtrl對象產(chǎn)生關(guān)聯(lián)。

調(diào)用AddTool函數(shù)來把tool tip control注冊到一個tool上,這樣存儲在tool tip中的信息就能在光標(biāo)懸浮在這個tool上的時候顯示出來。

調(diào)用SetToolInfo來設(shè)置tool tip為這個tool所保留的信息。

調(diào)用SetToolRect來設(shè)置該tol的一個新的范圍矩形。

調(diào)用HitTest函數(shù)來判斷一個點是否在某個給定tool的范圍矩形之內(nèi),如果是的話,就返回這個tool的信息。

調(diào)用GetToolCount來得到一個tool tip所關(guān)聯(lián)到的tool的個數(shù)。

// Create and associate a tooltip control to the tab control of
// CMyPropertySheet.  CMyPropertySheet is a CPropertySheet-derived
// class.
BOOL CMyPropertySheet::OnInitDialog()
...{
   BOOL bResult = CPropertySheet::OnInitDialog();
  
   // Create a tooltip control.  m_ToolTipCtrl is a member variable
   // of type CToolTipCtrl* in CMyPropertySheet class.  It is
   // initialized to NULL in the constructor, and destroyed in the
   // destructor of CMyPropertySheet class.
   m_ToolTipCtrl = new CToolTipCtrl;// 第一步,創(chuàng)建對象
   if (!m_ToolTipCtrl->Create(this)) //第二步,調(diào)用Create函數(shù)
   ...{
      TRACE("Unable To create ToolTip ");          
      return bResult;
   }

   // Associate the tooltip control to the tab control
   // of CMyPropertySheet.
   CTabCtrl* tab = GetTabControl();
   tab->SetToolTips(m_ToolTipCtrl);
   // Get the bounding rectangle of each tab in the tab control of the
   // property sheet. Use this rectangle when registering a tool with
   // the tool tip control.  IDS_FIRST_TOOLTIP is the first ID string
   // resource that contains the text for the tool.
   int count = tab->GetItemCount();
   int id = IDS_FIRST_TOOLTIP;
   for (int i = 0; i < count; i++)
   ...{
      id += i;
      CRect r;
      tab->GetItemRect(i, &r);
      VERIFY(m_ToolTipCtrl->AddTool(tab, id, &r, id));
   }

   // Activate the tooltip control.
   m_ToolTipCtrl->Activate(TRUE);

   return bResult;
}

// Override PreTranslateMessage() so RelayEvent() can be
// called to pass a mouse message to CMyPropertySheet's
// tooltip control for processing.
BOOL CMyPropertySheet::PreTranslateMessage(MSG* pMsg)
...{
   if (NULL != m_ToolTipCtrl)           
      m_ToolTipCtrl->RelayEvent(pMsg);
  
   return CPropertySheet::PreTranslateMessage(pMsg);
}

本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
在VisualC++中建立MFC擴展DLL
在控件中點確認(rèn)鍵窗口消失處理重寫PreTranslateMessage
vc技巧????-轉(zhuǎn)載
MFC限制Edit控件只輸入數(shù)字、小數(shù)點及失去焦點
用回車鍵實現(xiàn)MFC對話框中TAB鍵控件輸入焦點在控件中跳轉(zhuǎn)的效果
【轉(zhuǎn)】VC/MFC 鍵盤消息的截取與響應(yīng)
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服