Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I increase the size of a checkbox in a .Net WinForm. I tried Height and Width but it does not increases the Box size.

share|improve this question

4 Answers

up vote 12 down vote accepted

The check box size is hardcoded inside Windows Forms, you cannot mess with it. One possible workaround is to draw a check box on top of the existing one. It is not a great solution since auto-sizing cannot work anymore as-is and text alignment is muddled, but it is serviceable.

Add a new class to your project and paste the code shown below. Compile. Drop the new control from the top of the toolbox onto your form. Adjust the size of the control so you get the desired box size and ensure it is wide enough to fit the text.

using System;
using System.Drawing;
using System.Windows.Forms;

class MyCheckBox : CheckBox {
    public MyCheckBox() {
        this.TextAlign = ContentAlignment.MiddleRight;
    }
    public override bool AutoSize {
        get { return base.AutoSize; }
        set { base.AutoSize = false; }
    }
    protected override void OnPaint(PaintEventArgs e) {
        base.OnPaint(e);
        int h = this.ClientSize.Height - 2;
        Rectangle rc = new Rectangle(new Point(0, 1), new Size(h, h));
        ControlPaint.DrawCheckBox(e.Graphics, rc,
            this.Checked ? ButtonState.Checked : ButtonState.Normal);
    }
}
share|improve this answer
The only problem is that in Windows 7 the style of the checkbox don't match system default's – Jader Dias Jan 14 at 15:55
calling base.OnPaint(e); also leaves some pixels on the screen, I'd rather call e.Graphics.Clear(this.BackColor); – Jader Dias Jan 14 at 16:00

Unfortunately the control doesn't give you any options for this. You will need to paint your own.

share|improve this answer

To be able to resize a checkbox you must set the resize property to false.

share|improve this answer
Thank you very much! I wish I could upvote this a dozen times! – DerMike May 2 '12 at 10:07
There is no "resize" property in the CheckBox Windows Forms control. – TechAurelian Oct 22 '12 at 12:23

I have come across this and now I have found my answer myself. There's an "AutoSize" option, if you turn that off by taking it to "False", you will be able to get rid of fixed size in CheckBox.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.