chech box
-
Hello everybody How to change a size of box on checkBox control? thanks in advance
-
Hello everybody How to change a size of box on checkBox control? thanks in advance
you would need to create your own control, or to make the control owner drawn and draw it yourself, perhaps.
Christian Graus Driven to the arms of OSX by Vista.
-
Hello everybody How to change a size of box on checkBox control? thanks in advance
Do you want to change the size of just the check box control? CheckBoxs have (I think) the AutoSize property set to true. This will mean you cannot actually resize it in the form designer. Set this to false in the property grid or in code and you should be able to resize it. However, this will not make the actual box change size, just the area the control covers and the text will change position. If you want to actually make the box bigger, you will have to do as the other poster said and draw the box yourself.