这不适合我:
<StackPanel>
<ListBox x:Name="MyListBox"
ItemsSource="{StaticResource UserControlsCollection}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
<UserControl
Content="{Binding ElementName=MyListBox, Path=SelectedValue}"
/>
</StackPanel>
我在运行时收到此“项目不在预期范围内”错误。这些是数据:
<toolkit:ObjectCollection x:Key="UserControlsCollection">
<UserControl Style="{StaticResource UserControlListItemStyle}">
<Button>One Button</Button>
</UserControl>
<UserControl Style="{StaticResource UserControlListItemStyle}">
<ComboBox>
<ComboBoxItem Content="One" IsSelected="True" />
<ComboBoxItem Content="Two" />
<ComboBoxItem Content="Three" />
</ComboBox>
</UserControl>
<UserControl Style="{StaticResource UserControlListItemStyle}">
<Rectangle
Fill="Red"
Width="120" Height="120"
/>
</UserControl>
</toolkit:ObjectCollection>