MFC对话框列表控件的工具提示

发布于 2024-11-19 08:26:55 字数 123 浏览 0 评论 0 原文

我开发了一个应用程序,它显示一个带有两个列表控件的对话框。 在此列表控件中,我显示图像。现在我想要的是,当我们将鼠标从对话框的列表控件移动到图像上时,它将显示工具提示。

如何在对话框中的列表控件中显示图像的工具提示?

I have developed on application, which shows a dialog box with two list controls.
In this list control, I am showing images. Now I want is, when we move the mouse on images from the list control of dialog box, It will show tool tip for that.

How can I show tool tips for images in a list control in a dialog box?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗化ㄋ丶相逢 2024-11-26 08:26:55

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 the GetToolTips function and the corresponding SetToolTips function. You can also check out how this sample ListView control implements tooltips:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文