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
問題は、イベントを読み取れないことです。ステートメントの左側でのみ使用できるというメッセージが表示されます。
何か案は?