vote up 0 vote down star

Hi, I have a list box with Checkboxes in it. I want to prevent the Checkbox from changing its status if the user clicks on the text next to it. I only want it to change if the small box is clicked directly.

Is there any way to do this in windows forms?

Greetings and thanks in advance.

flag

75% accept rate
Are you talking about CheckedListBox specifically? Because all the answers thus far have been about CheckBox control specifically. – hometoast Oct 20 at 15:25
Thanks for your comment. No I am not talking about CheckedListBoxes, I have a standard ListBox with CheckBoxes in it (and other controls, so we had to choose the ListBox instead of a CheckedListBox) – lakai Oct 27 at 7:29

3 Answers

vote up 6 vote down check

Place the text next to it in a Label, instead of the Text property of the Checkbox. Or you could create your own control which has a Checkbox and a Label. The Text property of the control would then fill the Text in the Label, and you could expose all of the Checkboxes regular properties in your control.

link|flag
+1. Thats exactly what I was going to suggest. – David Stratton Oct 20 at 14:20
Ok thank you, seems that there is no way around to create my own control – lakai Oct 20 at 14:30
vote up 1 vote down

That's fairly non-standard behavior. Users are going to expect to be able to change the checkbox when clicking on its label, and are going to be frustrated, confused, and surprised when it doesn't work. I'd recommend not doing this. I'm not the only one.

(Yes, it's about web design, but many of the concepts are applicable in desktop application design as well.)

link|flag
Sounds more like a comment. – Yuriy Faktorovich Oct 20 at 14:27
1  
Fair enough. However, I think it's important enough to not surprise your users to warrant putting it in an answer instead. – Bears will eat you Oct 20 at 14:30
vote up 0 vote down

You could always not fill in the Text property of the Checkbox and make a completely separate Label control.
Otherwise, you will probably have to do explicit hit testing within the control to see if they hit the box or text. And then you will have to worry about checking the margins, which side the box is on, and other things that can change the position of the box.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.