WPF Datagrid弹出窗口放置

时间:2012-10-29 10:50:40

标签: wpf xaml

当用户双击DataGrid行时,我正在显示一个Popup,有没有办法在SelectedItem的右边显示这个弹出窗口?

这是我目前的代码:

<Popup PlacementTarget="{Binding ElementName=dgWarnings}" Placement="Right" Name="InfoPopup" PopupAnimation="Slide" AllowsTransparency="True" IsOpen="{Binding ShowInfo}">        

我显然无法绑定到所选的项属性,因为这不是UI项目。

正如我所提到的,我想将它显示在数据网格中当前所选项目的右侧。

有什么建议吗?

0 个答案:

没有答案