我有一个静态集合:
<CollectionViewSource Source="{Binding Source={x:Static Application.Current}, Path=MarketDataListeners}" x:Key="ficServerMarketDataView"></CollectionViewSource>
这是一个类型的集合MarketDataListener
。我有一个绑定到此集合的 ListView 和一个绑定到此 ListView 的选定项的 ContentControl。在 ContentControl 中,我有一个启动子窗口的按钮(在后面的代码中)。
我正在做的是跟踪主窗口中的选定项目,如下所示:
private void ListView_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
_selectedItem = ((sender as ListView).SelectedValue as MarketDataContainer);
}
然后当单击控制控件中的按钮时,我执行:
private void ShowComponentsButton_Click(object sender, RoutedEventArgs e)
{
var detailsWindow = new ComponentWindow(_selectedItem);
var button = sender as Button;
if (button == null) return;
detailsWindow.Show();
}
这是 ContentControl 的绑定:
<ContentControl Name="Detail" Content="{Binding Source={StaticResource ficServerMarketDataView}}"
ContentTemplate="{StaticResource detailsFicTemplate}" VerticalAlignment="Stretch" Foreground="Black" DockPanel.Dock="Bottom" />
是否可以删除跟踪所选项目的代码,只需在没有参数的情况下启动子窗口?子窗口的 Title 应该是当前选中的 'Name' 属性MarketDataListener
。理想情况下,当所选项目更改时,子窗口不会更新。