Is there a way the CheckedChanged event (or any other C# event) to be declared as User event? The problem is that if the property Checked is changed by code the Event is called and this is a thing that I would not want (for example in MFC the events are user events as opposed to property events). I by pass it with boolean flags and this is a little bit awkward in 2011!
Share
You can unsubcribe the event. After you change the value you can subscribe again.
alternativly you can set a variable to bypass like this
both will work
hope this helps.