如何将 Popup(或 ContextMenu)PlacementTarget 绑定到 UserControl 中的元素?

发布于 2024-08-18 06:52:04 字数 241 浏览 2 评论 0原文

在这样的场景中:

<Grid>
...
   <local:MyControl x:Name="MyCtl" Grid.Row="1"/>
   <Popup PlacementTarget="{Binding ???}"/>
<Grid>

我需要将 PlacementTarget 绑定到 MyCtl 内名为 MyBtn 的按钮。最干净的方法是什么?

In a scenario like this:

<Grid>
...
   <local:MyControl x:Name="MyCtl" Grid.Row="1"/>
   <Popup PlacementTarget="{Binding ???}"/>
<Grid>

I need to bind PlacementTarget to a button named MyBtn within MyCtl. What is a cleanest way to do it?

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

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

发布评论

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

评论(2

瑾兮 2024-08-25 06:52:04
<Popup PlacementTarget="{Binding ElementName=MyCtl}" />
<Popup PlacementTarget="{Binding ElementName=MyCtl}" />
浸婚纱 2024-08-25 06:52:04

您可以在后面代码的构造函数中设置 PlacementTarget,如下所示:

popup.PlacementTarget=MyCtl.MyBtn;

You could set the PlacementTarget in the constructor of the code behind like this:

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