WPF - 将静态项添加到组合框

时间:2009-11-24 17:53:28

标签: wpf combobox

我有一个我需要显示的组合框,但它不需要数据绑定或其他任何内容,内容是静态的。如何使用XAML将静态项目列表添加到我的组合框?

4 个答案:

答案 0 :(得分:122)

以下是来自MSDN的代码和链接 - Article Link,您应该查看更多详细信息。

<ComboBox Text="Is not open">
    <ComboBoxItem Name="cbi1">Item1</ComboBoxItem>
    <ComboBoxItem Name="cbi2">Item2</ComboBoxItem>
    <ComboBoxItem Name="cbi3">Item3</ComboBoxItem>
</ComboBox>

答案 1 :(得分:20)

像这样:

<ComboBox Text="MyCombo">
<ComboBoxItem  Name="cbi1">Item1</ComboBoxItem>
<ComboBoxItem  Name="cbi2">Item2</ComboBoxItem>
<ComboBoxItem  Name="cbi3">Item3</ComboBoxItem>
</ComboBox>

答案 2 :(得分:7)

您还可以在代码中添加项目:

cboWhatever.Items.Add("SomeItem");

此外,要添加控制显示/值的内容(根据我的经验几乎绝对需要),您可以这样做。我在这里找到了一个很好的stackoverflow参考:

Key Value Pair Combobox in WPF

总结代码将是这样的:

ComboBox cboSomething = new ComboBox();
cboSomething.DisplayMemberPath = "Key";
cboSomething.SelectedValuePath = "Value";
cboSomething.Items.Add(new KeyValuePair<string, string>("Something", "WhyNot"));
cboSomething.Items.Add(new KeyValuePair<string, string>("Deus", "Why"));
cboSomething.Items.Add(new KeyValuePair<string, string>("Flirptidee", "Stuff"));
cboSomething.Items.Add(new KeyValuePair<string, string>("Fernum", "Blictor"));

答案 3 :(得分:1)

<ComboBox Text="Something">
            <ComboBoxItem Content="Item1"></ComboBoxItem >
            <ComboBoxItem Content="Item2"></ComboBoxItem >
            <ComboBoxItem Content="Item3"></ComboBoxItem >
</ComboBox>