将字符串数组添加到combobox c#wpf

时间:2013-10-16 05:08:11

标签: c# wpf arrays xaml combobox

我需要在WPF应用程序中向ComboBox添加12个字符串。使用XAML非常困难,因为我必须逐个添加。所以我用字符串数组来做到这一点。

我使用了以下代码,

string[] arrayMonth = new string[] { "January", "February", "March", "April", "May",  
    "June", "July", "August", "September", "October", "November", "December"};

cmbMonth_Finance_ES.ItemsSource = arrayMonth;

但是ComboBox加载为空。我在互联网上试过但却一无所获。所以请帮我把字符串数组添加到ComboBox中。

0 个答案:

没有答案