I'm using WPF 4 with the MVVM pattern. I have a TabControl - it looks like:
<TabControl x:Name="Items" ItemsSource="{Binding Screens}"
SelectedItem="{Binding ActiveScreen}">
<TabControl.ItemTemplate>
<DataTemplate>
<ContentControl>
<Button Command="{Binding
DataContext.ScreenCloseCommand,
ElementName=MainWindow}"
CommandParameter="{Binding}">X</Button>
</ContentControl>
</DataTemplate>
</TabControl.ItemTemplate>
The problem is, that CommandParameter="{Binding}" holds a strong reference to the currently displayed View/ViewModel. How can i remove that command? In other words: i need a way to remove the Button Command from ItemTemplate by only having a reference of the TabControl.ContentTemplate (ViewModel and View). Something like go through items, find the item, remove command ...
Thanks Michael