我怎样才能访问父元素的datacontext中的Windows Phone 8? AncestorType不提供WP8。
<ItemsControl x:Name="Elements" ItemsSource="{Binding MyList}" Grid.Row="2" Grid.Column="3">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Content="e" Width="100" Height="100" Command="{Binding MyCommand" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
“mycommand的”是“MYLIST”之外定义。 因此,如何从我的按钮访问根的datacontext(的DataContext = MyClass的)。 mycommand的在MyClass类定义。
提前致谢。