본문 바로가기
C & C++/MFC 컨트롤

[ToolTip] 정적툴팁

by izen8 2011. 5. 21.
반응형


//  ToolTipDlg.h
class  CToolTipDlg  :  public  CDialog
{
//  Construction
public:
   CToolTipDlg(CWnd*  pParent  =  NULL);   //  standard  constructor

   CToolTipCtrl  m_ctrlTT;

//  Dialog  Data
   //{{AFX_DATA(CToolTipDlg)
   enum  {  IDD  =  IDD_TOOLTIP_DIALOG  };
   CSliderCtrl   m_ctrlSlider;  //  Control형  멤버  변수  연결

//..
}


//  ToolTipDlg.cpp
BOOL  CToolTipDlg::OnInitDialog()
{
   CDialog::OnInitDialog();

   //  Set  the  icon  for  this  dialog.    The  framework  does  this  automatically
   //    when  the  application's  main  window  is  not  a  dialog
   SetIcon(m_hIcon,  TRUE);         //  Set  big  icon
   SetIcon(m_hIcon,  FALSE);      //  Set  small  icon
  
   //  TODO:  Add  extra  initialization  here
   m_ctrlTT.Create(this);
   m_ctrlTT.AddTool(&m_ctrlSlider,  _T("이것으로  보륨을  조절하세요."));
  
   return  TRUE;    //  return  TRUE    unless  you  set  the  focus  to  a  control
}


BOOL  CToolTipDlg::PreTranslateMessage(MSG*  pMsg) 
{
   //  TODO:  Add  your  specialized  code  here  and/or  call  the  base  class
   m_ctrlTT.RelayEvent(pMsg);
   return  CDialog::PreTranslateMessage(pMsg);
}
반응형

'C & C++ > MFC 컨트롤' 카테고리의 다른 글

[Button] Bitmap Button 02  (0) 2011.05.21
[Button] Bitmap Button 01  (0) 2011.05.21
[ToolTip] 동적 툴팁  (0) 2011.05.21
[Ctrl] Checkbox 사용법  (0) 2011.05.20
[Edit] Edit & ComboBox 글자수 제한  (0) 2011.05.04

댓글