我使用綁定到ObservableCollection
填充我的ListBox
。該項目被添加到ListBox
就好了,但是當我要選擇ListBox
的第一個項目,我得到一個InvalidOperationException
...無法選擇項目列表框:InvalidOperationException
代碼:
private void PopulateDateListbox()
{
// clear listbox
DateList.Clear();
// get days in month
int days = DateTime.DaysInMonth(currentyear, currentmonth);
// new datetime
DateTime dt = new DateTime(currentyear, currentmonth, currentday);
for (int i = 0; i < (days-currentday+1); i++)
{
// create new dataitem
DateItem di = new DateItem();
di.dayint = dt.AddDays(i).Day.ToString(); // day number
di.day = dt.AddDays(i).DayOfWeek.ToString().Substring(0, 3).ToUpper(); // day string
di.monthint = dt.AddDays(i).Month.ToString(); // month number
di.yearint = dt.AddDays(i).Year.ToString(); // year number
// add dateitem to view
Dispatcher.BeginInvoke(() => DateList.Add(di));
}
// select first item in Listbox
datelistbox.SelectedIndex = 0; // <= InvalidOperationException
}
我也試過:
datelistbox.SelectedItem = datelistbox.Items.First();
既不工作,我不知道爲什麼?
您是否在工作線程(UI線程除外)中調用'PopulateDateListbox'? –
PopulateDateListbox在頁面加載的事件處理程序中被調用。 –
發佈你正在得到的錯誤信息 –