Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make the text of checkbox wraps automatically with changing form width? [closed]

In windows forms I have checkbox list that contains long text, the form is re-sizable..

can I make the text wraps automatically in run-time according to the form width ?

like image 601
Emad Khalil Avatar asked Dec 26 '22 03:12

Emad Khalil


1 Answers

You can by using:

  1. set 'autosize' to 'false'

  2. change the width of 'MaximumSize' to the label width you want, say '70'

  3. change the height of 'MinimumSize' to the label height you want, say '30'

like image 128
Joseph Wu Avatar answered Apr 30 '23 02:04

Joseph Wu