我有以下用戶控件嵌入在另一個用戶控件中。WPF UserControl綁定問題
<UserControl.Resources>
<DataTemplate x:Key="ContextsTemplate">
<Label Margin="10,0,20,0" Content="{Binding Name}"/>
</DataTemplate>
</UserControl.Resources>
<ItemsControl Name="Contexts"
Background="Transparent"
ItemsSource="{Binding}"
Margin="0,0,0,0"
VerticalAlignment="Center"
AlternationCount="2"
ItemTemplate="{StaticResource ContextsTemplate}">
</ItemsControl>
這裏是上面嵌入另一個用戶控件(controlA)的用戶控件(controlB)的XAML代碼。
<local:ContextContentsUserControl Height="30" Content="{Binding Contexts}"/>
controlA顯示在屏幕上「(集合)」,但由於某些原因沒有顯示在標籤集合文本的每個項目。請幫忙。