如何设置所有者绘制变量CListBox(MFC)的高度

发布于 2024-12-27 15:02:13 字数 256 浏览 2 评论 0原文

我有一个可变高度所有者绘制 ListBox 控件。当我调用 AddString 时,会发送一条 MeasureItem 消息,要求我告诉 Windows 项目的大小。问题是,代码还没有机会调用 SetItemData,因此代码还无法确定大小。

我尝试调用 SetRedraw(FALSE) 希望这会推迟测量请求,但没有成功。

那么如何向 CListBox 添加项目并同时获取传入的项目数据呢?我尝试过使用和不使用 LBS_HASSTRINGS 。不知道还能尝试什么。

I have a variable-height owner draw ListBox control. When I call AddString, a MeasureItem message is sent asking me to tell Windows the size of the item. The problem is, the code hasn't had a chance to call SetItemData yet, so the code can't determine the size yet.

I've tried calling SetRedraw(FALSE) hoping that would postpone the measure request, but no luck.

So how can I add an item to a CListBox and get the Item Data passed in at the same time? I've tried with and without LBS_HASSTRINGS. Not sure what else to try.

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

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

发布评论

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

评论(1

樱娆 2025-01-03 15:02:13

如果您的列表框控件没有 LBS_HASSTRINGS 样式,则 AddString() 的指针参数不会被视为字符串,而是被视为项目数据(请参阅LB_ADDSTRING 的文档)。

因此,如果您的列表项同时包含字符串和某些项数据,则可以将这两条信息包装在结构或类中,并将指向该包装器的指针传递给 AddString()

好处是,在调用 MeasureItem() 时,字符串和项目数据都将可用。缺点是,如果列表已排序,则必须实现CompareItem(),并在删除项目时和销毁列表框控件之前释放包装器。

If your list box control does not have the LBS_HASSTRINGS style, the pointer argument to AddString() is not considered as a string but as item data (see the remarks section in the documentation for LB_ADDSTRING).

Therefore, if your list items consist in both a string and some item data, you can wrap these two pieces of information in a structure or a class and pass a pointer to that wrapper to AddString().

The upside is that both the string and the item data will be available by the time MeasureItem() is called. The downside is that you will have to implement CompareItem() if your list is sorted, and to free the wrappers both when items are deleted and before the list box control is destroyed.

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