0
我有以下XAML:的WinRT XAML ItemsControl的孩子結合
<ItemsControl ItemsSource="{Binding DataContext}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<local:MyControl DataContext="{Binding}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
如何設置的MyControl
的DataContext
到ItemsControl
的一個項目?
注意:ItemsControl
嵌入在UserControl
。 UserControl
在它正在使用的地方設置了DataContext
屬性。