ListBoxItem 上的 WPF 弹出窗口

发布于 2024-10-15 20:25:11 字数 440 浏览 1 评论 0原文

我有一个 MiniToolbar 弹出窗口,当鼠标悬停在 ListBoxItem 上时显示,它需要显示在该项目的正下方。 (MouseOver触发器还设置项目上的IsSelected属性)

我尝试了两个选项:

  1. 在项目DataTemplate上定义弹出窗口
  2. 在ListBoxItem的ControlTemplate上定义弹出窗口

这两个选项都工作正常,但是我想知道是否每次都重新创建弹出窗口?? (请建议)

我认为在包含 ListBox 的 ControlTemplate 中定义弹出窗口比在 ListBoxItem 中定义更好? 我尝试了此操作,但找不到相对于 SelectedItem 的放置属性的绑定表达式(它显示在 ListBox 的底部,而不是 ListBoxItem 的底部)。

有什么建议吗?

提前致谢。 迈克尔.

I have a MiniToolbar popup that shows up at Mouseover on a ListBoxItem, it needs to show just under the item.
(a MouseOver trigger also sets the IsSelected property on the items)

I tried two options :

  1. define the popup on the items DataTemplate
  2. define the popup on the ControlTemplate for the ListBoxItem

Both options work fine, however I was wondering if the popup was recreated each time ??
(please advise)

I think it would be better to define the popup in the ControlTemplate of the containing ListBox rather than the ListBoxItem ?
I tried this, but could not find the binding expression for placement property relative to the SelectedItem (it shows up at the bottom of the ListBox, not bottom of ListBoxItem).

Any suggestions ?

thanks in advance.
Michael.

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

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

发布评论

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

评论(1

红颜悴 2024-10-22 20:25:11

在这两种情况下,都会为每个列表框项目创建一次弹出窗口。

我不建议您对列表框中 CotnrolTemplate 中的所有项目使用单个弹出窗口,因为这会使事情变得非常复杂。但如果您仍然想这样做,可以在弹出窗口上设置 Placement="Custom" 并指定 CustomPopupPlacementCallback。在该回调中,您可以使用当前所选项目的位置来计算放置位置。

The popup is created one time for each list box item in both cases.

I would not suggest that you use single popup for all items in the CotnrolTemplate for the list box because it significantly complicates things. But if you still want to do so, you can set Placement="Custom" on you popup and specify CustomPopupPlacementCallback. In that callback you can calculate the placement using the position of currently selected item.

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