List<string> ItemList = newList<string>();
String[] x = { "Item1", "Item2", "Item3" };
ItemList.AddRange(x);
comboBox1.ItemsSource = ItemList;