3
WPF Databinding: ฉันจะเข้าถึงบริบทข้อมูล "พาเรนต์" ได้อย่างไร?
ฉันมีรายการ (ดูด้านล่าง) ที่มีอยู่ในหน้าต่าง หน้าต่างDataContextมีสองคุณสมบัติและItemsAllowItemCommand ฉันจะได้รับผลผูกพันสำหรับ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 .}"> <TextBlock Text="Allow" /> </Hyperlink> </TextBlock> </StackPanel> </DataTemplate> </GridViewColumn.CellTemplate> </GridViewColumn> </GridView> </ListView.View> </ListView>