How to add a margin to a CheckedListBox in .NET?

Posted by Xanatos on Stack Overflow See other posts from Stack Overflow or by Xanatos
Published on 2010-05-23T20:36:13Z Indexed on 2010/05/23 20:40 UTC
Read the original article Hit count: 275

Filed under:
|
|
|
|

I'm writing an windforms application using .NET (actually IronPython, but that's not relevant), and I have a CheckedListBox object in my GUI.

It's working fine, it has about 20 items in a multicolumn layout. But I can't figure out how to give the thing a nice internal margin--I want to insert around 20 or 30 pixels of whitespace around the top, bottom, left, and right edges of the checkboxes.

To be clear, I want the whitespace to appear between the border of the CheckedListBox and the Checkboxes inside it, not outside the whole component.

Hopefully this is an easy answer, and I'm just missing it cause I'm new to programming in windows. If its not possible, I guess that'd be good to know too, so I don't waste anymore time with it.

(If I were doing this in Swing (Java) I would be looking to set the Insets on my component, or maybe build up a compound border with some empty space in it.)

© Stack Overflow or respective owner

Related posts about .NET

Related posts about winforms