0
我想清除並刪除項目後重新加載列表框。但我收到錯誤。 請告訴我如何清除和SQLite後重新加載列表框在windows phone的刪除操作7.如何在Windows Phone 7中使用sqlite刪除項目後清除列表框?
int _id = int.Parse(((System.Windows.FrameworkElement)(e.OriginalSource)).Tag.ToString());
string strDel = "Delete from category where id=" + _id;
(Application.Current as App).db.Delete<Category>(strDel);
ApplicationsListBox.Items.Clear();
LoadData();
錯誤:不支持的操作在只讀集合。
請任何人告訴我如何清除和重新加載列表框....
你是怎麼做你的數據綁定? – firebellys 2012-03-20 07:34:23