I create many checkboxes dynamically in c# ( windows forms ). I want to assign the sizes of the checkboxes’ texts. But I couldn’t find a way. I want something like that :
CheckBox[] chk = new CheckBox[ff.documentColumnCount];
chk[i].Font.Size = 8.5; // but of course this line doesn't work
what can I do about this,thanks for helping..
Something like this perhaps: