Problem when trying delete item from ComboBox
I'm initialize my ComboBox using DataSource. After that when I'm trying to remove item from ComboBox I'm getting exception: "Items collection cannot be modified when the DataSource property i开发者_如何转开发s set."
How can I remove items from ComboBox ?
You should modify the datasource. Delete the item from the list that is bound to the combobox.
精彩评论