gpt4 book ai didi

visual-c++ - 如何使用 Visual C++ 2008 添加工具提示来控制窗口应用程序 (win32 API)

转载 作者:行者123 更新时间:2023-12-03 00:58:43 28 4
gpt4 key购买 nike

我有一个 Visual C++ 中的窗口应用程序(win32 API),我必须在其中向控制按钮添加工具提示。任何人都可以帮助我完成上述任务吗?提前致谢。

最佳答案

如果您不使用 MFC 类,请参阅 About Tooltip Controls

这是一个使用CToolTipCtrl类的示例,

// Init a tooltip window    
m_ToolTipCtrl = new CToolTipCtrl;
m_ToolTipCtrl->Create( this ); // 'this', usually a CDialog window

m_ToolTipCtrl->SetMaxTipWidth( 300 ); // if you need multiline messages
m_ToolTipCtrl->SetTipBkColor( 0x000000 );
m_ToolTipCtrl->SetTipTextColor( 0xe0e0d0 );

// Attach a CListBox control (we can attach many controls)
m_ToolTipCtrl->AddTool( plstBox, "Hey, i am a tooltip message!" );


// ...
// (*) We must use the following in order to use tooltips (MFC 4.0 and later versions)
BOOL MyDialog::PreTranslateMessage(MSG* pMsg)
{
if (NULL != m_ToolTipCtrl)
m_ToolTipCtrl->RelayEvent(pMsg); // <- listen mouse messages!


return CDialog::PreTranslateMessage(pMsg);
}

关于visual-c++ - 如何使用 Visual C++ 2008 添加工具提示来控制窗口应用程序 (win32 API),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1832165/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com