1

我正在尝试将列表框的 itemsSource 设置为复合集合。

<ListBox x:Name="moduleMenu" SelectedItem="{Binding SelectedSourceViewDetail}">
                        <ItemsControl.ItemsPanel>
                            <ItemsPanelTemplate>
                                <StackPanel Orientation="Horizontal"/>
                            </ItemsPanelTemplate>
                        </ItemsControl.ItemsPanel>

                        <ListBox.ItemsSource>
                            <CompositeCollection>
                                <ListBoxItem DataContext="{Binding SourceModule.Settings}" Content="{Binding Name}"/>
                                <CollectionContainer Collection="{Binding SourceModule.ExtraViews}" />
                            </CompositeCollection>
                        </ListBox.ItemsSource>
                    </ListBox>

但是与 selectedItem 的绑定不起作用。选择项目后,如何在视图模型中获取所选项目?

4

1 回答 1

0

而不是像在 xaml 中那样设置 ItemsSource。我建议您使用返回 CompositeCollection 并将该集合绑定到 ItemsSource 的转换器。CompositeCollection 将是 Settings 和 ExtraViews 的集合

您的装订将如下所示ItemsSource = "{Binding SourceModel, Converter={StaticResource myConverter}}"。在转换器的 Convert 方法中,从 sourcemodel.Settings 和 sourcemodel.ExtraViews 创建复合集合并返回。

谢谢

于 2013-08-30T12:23:27.597 回答