如何在xaml中填充wpf组合框

时间:2013-01-08 10:54:31

标签: wpf combobox

我需要用固定的字符串集合填充wpf组合框(例如从1月到12月的几个月)。

3 个答案:

答案 0 :(得分:20)

在命名空间中添加声明:

xmlns:sys="clr-namespace:System;assembly=mscorlib"

然后在适当的地方添加组合框:

<ComboBox>
  <sys:String>January</sys:String>
  <sys:String>February</sys:String>
  <sys:String>March</sys:String>
                ...
  <sys:String>December</sys:String>
</ComboBox>

答案 1 :(得分:4)

喜欢这个吗?

<ComboBox > 

<ComboBoxItem Content="Jenuary"></ComboBoxItem> 

<ComboBoxItem Content="February"></ComboBoxItem> 

<ComboBoxItem Content="Mars"></ComboBoxItem> 

.... and so on....
</ComboBox>

答案 2 :(得分:1)

您应该将组合框的ItemsSource绑定到List<string>.的属性