3
WPF Databinding: как получить доступ к «родительскому» контексту данных?
У меня есть список (см. Ниже), содержащийся в окне. Окно DataContextимеет два свойства, Itemsи AllowItemCommand. Как я могу получить привязку для свойства Hyperlink's, Commandчтобы разрешить против окна DataContext? <ListView ItemsSource="{Binding Items}"> <ListView.View> <GridView> <GridViewColumn Header="Action"> <GridViewColumn.CellTemplate> <DataTemplate> <StackPanel> <TextBlock> <!-- this binding is not working --> <Hyperlink Command="{Binding AllowItemCommand}" CommandParameter="{Binding …