H,
我有一个事件设置为 ItemChecked 的 listView,现在我需要执行以下操作:
var tmp = this.listView.ItemChecked;
this.listView.ItemChecked = null; //set the event to null
// run some code which checkes some item in the list
// wehre the event shouldnt get fired on
this.listView.ItemChecked = tmp; //set the event again
问题是我无法阅读该事件,我得到的消息是它只能在语句的左侧使用。
有任何想法吗?