Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Checkbox Text l does not fit its text

C# Win32: I have a Checkbox with some text in it. but it is on one of the panels of a splitter. and I have set the auto size property to True ..but when I move the splitter bar to the left to make the space smaller it cuts off some of the text of the check box...how can i make it to still show the whole text and for example break it in two lines?

like image 672
Bohn Avatar asked Dec 07 '10 20:12

Bohn


1 Answers

To use word wrapping you have to set AutoSize=false . You can use Annchors or DockStyle to align it to the panel. You will have to give it enough Height.

like image 72
Henk Holterman Avatar answered Sep 30 '22 06:09

Henk Holterman