当用户双击DataGrid行时,我正在显示一个Popup,有没有办法在SelectedItem的右边显示这个弹出窗口?
这是我目前的代码:
<Popup PlacementTarget="{Binding ElementName=dgWarnings}" Placement="Right" Name="InfoPopup" PopupAnimation="Slide" AllowsTransparency="True" IsOpen="{Binding ShowInfo}">
我显然无法绑定到所选的项属性,因为这不是UI项目。
正如我所提到的,我想将它显示在数据网格中当前所选项目的右侧。
有什么建议吗?