0

我想在 C# 中添加一个组合框,因为我不想一直添加相同的组合框。我的代码是我想添加的组合框。

    <ScrollViewer Margin="252,130,296,134" Grid.Row="1" VerticalAlignment="Top" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled" ScrollViewer.VerticalScrollMode="Enabled" ScrollViewer.HorizontalScrollMode="Disabled" ScrollViewer.ZoomMode="Disabled">
            <StackPanel >
                <ItemsControl x:Name="ic" Grid.Row="2">
                    <ItemsControl.ItemTemplate>
                        <DataTemplate>
                            <Grid HorizontalAlignment="Left" VerticalAlignment="Center">
                                <StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
                                    <Border BorderBrush="#C83245" Background="White"  BorderThickness="1">
                                        <ComboBox x:Name="cbSeletion" VerticalAlignment="Center" FontSize="14" Width="250" Height="40" Foreground="Black" Tapped="cbSeletion_Tapped">

                                        </ComboBox>
                                    </Border>
                                    <Border BorderBrush="#C83245" Background="White" BorderThickness="1">
                                        <TextBlock Text="{Binding Name}" FontSize="14" VerticalAlignment="Center" Width="350" Foreground="Black"/>
                                    </Border>
                                    <Border BorderBrush="#C83245" Background="White"  BorderThickness="1" >
                                        <TextBlock Text="{Binding Position}" FontSize="14" VerticalAlignment="Center" Width="250" Foreground="Black"/>
                                    </Border>
                                </StackPanel>
                            </Grid>
                        </DataTemplate>
                    </ItemsControl.ItemTemplate>
                </ItemsControl>
            </StackPanel>
        </ScrollViewer>

我该怎么做才能使用它?

4

2 回答 2

0

如果你的项目真的很少,你可以直接ComboBoxItem在 XAML 中使用,但它仍然不是那么优雅。MVVM 方法无疑是答案,特别是对于 ComboBox 集合中的许多项目,因为它为您提供了更大的灵活性并且逻辑不是那么硬编码。

于 2013-10-04T16:39:17.613 回答
0

您可以将组合框 ItemsSource 绑定到视图模型中的 ObservableCollection:

<ComboBox ItemsSource="{Binding Items}"/>

物业:

ObservableCollection<string> _items = new ObservableCollection<string>();
public ObservableCollection<string> Items
{
     get
     {
          return _items;
     }
}

然后,您可以在该集合中添加项目或从该集合中添加项目,下拉列表中的项目将反映它。

于 2013-10-04T15:51:07.680 回答