|
-
January 9th, 2010, 10:59 AM
#1
C# Override CheckedListBox
i need to override the base CheckedListBox behaviour.
it is possible to check and uncheck a CheckedListBox without any code attached to it.
i need to disable this behaviour so that i can implement custom code.
any ideas?
for example:
if (ListenCheckedListBox.GetItemChecked(0)) { ListenCheckedListBox.SetItemChecked(0, false); }
if (!ListenCheckedListBox.GetItemChecked(0)) { ListenCheckedListBox.SetItemChecked(0, true); }
does not work because the controls default behaviour already does this anyway.
hopefully you can understand my issue.
thanks.
-
January 9th, 2010, 06:45 PM
#2
Re: C# Override CheckedListBox
Can you explain further? What does CheckedListBox do that you do not like?
-
January 11th, 2010, 03:14 AM
#3
Re: C# Override CheckedListBox
Subscibing to CheckedChanged event is not enought?
- Make it run.
- Make it right.
- Make it fast.
Don't hesitate to rate my post. 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|