3
WPF 데이터 바인딩 :“부모”데이터 컨텍스트에 어떻게 액세스합니까?
창에 포함 된 목록 (아래 참조)이 있습니다. 윈도우의이 DataContext두 가지 속성을 가지고 Items와 AllowItemCommand. Hyperlink의 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 .}"> <TextBlock Text="Allow" /> …