MFC对话框列表控件的工具提示
我开发了一个应用程序,它显示一个带有两个列表控件的对话框。 在此列表控件中,我显示图像。现在我想要的是,当我们将鼠标从对话框的列表控件移动到图像上时,它将显示工具提示。
如何在对话框中的列表控件中显示图像的工具提示?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我开发了一个应用程序,它显示一个带有两个列表控件的对话框。 在此列表控件中,我显示图像。现在我想要的是,当我们将鼠标从对话框的列表控件移动到图像上时,它将显示工具提示。
如何在对话框中的列表控件中显示图像的工具提示?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
CToolTipCtrl
控件 是 MFC 包装类围绕 Win32“工具提示”。您可以使用它来显示一个小的弹出窗口来描述另一个控件或在您的应用程序中提供其他信息。如果您使用的是 ListBox 控件,请浏览以下示例项目之一,了解如何显示该 ListBox 控件中显示的各个项目的工具提示:
如果您使用的是 ListView 控件 (
CListCtrl
(MFC 中)),那么您应该首先阅读GetToolTips
函数 和相应的SetToolTips
函数。您还可以查看此示例 ListView 控件如何实现工具提示:The
CToolTipCtrl
control is the MFC wrapper class around the Win32 "tool tip". You can use this to display a small pop-up window to describe another control or provide additional information in your app.If you're using a ListBox control, explore one of these sample projects to see how to display tooltips for individual items displayed within that ListBox control:
And if you're using a ListView control (
CListCtrl
in MFC), then you should start by reading the documentation for theGetToolTips
function and the correspondingSetToolTips
function. You can also check out how this sample ListView control implements tooltips: