VC中怎样实现当鼠标移到某个按钮上时提示这个按钮是什么?
发布网友
发布时间:2023-11-04 06:14
我来回答
共2个回答
热心网友
时间:2024-12-05 19:44
在类定义中添加变量说明:
class CWndYour:xxx
{
CToolTipCtrl m_tt;
}
在OnCreate中添加需要显示Tip的子窗口
CWndYour::OnCreate(....)
{
EnableToolTips(TRUE);
m_tt.Create(this);
m_tt.Activate(TRUE);
m_tt.SetTitle(1,"Title");//不要title可以删除
m_tt.SetDelayTime(150);
CWnd* pW=GetDlgItem(IDC_BUTTON1);//得到窗口指针
m_tooltip.AddTool(pW,"这是一个按钮");
}
重写 PreTranslateMessage(MSG* pMsg)添加代码
BOOL CWndYour::PreTranslateMessage(MSG* pMsg)
{
m_tt.RelayEvent(pMsg);
return CParentClass::PreTranslateMessage(pMsg);
}
这样当鼠标移动到相应BUTTON上时会显示出相应的ToolTip。
--------------------------
L就是使用UNICODE字符集。。这里不需要,是误笔
热心网友
时间:2024-12-05 19:45
工具栏按钮?
如按钮的“Prompt”属性
如关于的如下:
显示程序信息,版本号和版权\n关于