show/hide this revision's text 3 added 296 characters in body

It's strange to need to layout one control within another. You might be solving an upstream problem wrong. Are you able to split the label into two labels with the updown between and maybe rely on a Windows Forms TableLayout panel?

If it's essential to try to position based on font sizes, you could use Graphics.MeasureString("String before updown", myLabel.Font)

If what you're after is font-dependent control positioning, you should probably retitle the question.


[edit] You can handle the click event of the "second half" part of the label and change the checkbox state on that event. The whole thing seems like a hack though. What is the problem being solved by this weird control layout? Why do you need an up-down in the middle of a label?

show/hide this revision's text 2 added 110 characters in body

It's strange to need to layout one control within another. You might be solving an upstream problem wrong. Are you able to split the label into two labels with the updown between and maybe rely on a Windows Forms TableLayout panel?

If it's essential to try to position based on font sizes, you could use Graphics.MeasureString("String before updown", myLabel.Font)

If what you're after is font-dependent control positioning, you should probably retitle the question.

show/hide this revision's text 1

It's strange to need to layout one control within another. You might be solving an upstream problem wrong. Are you able to split the label into two labels with the updown between and maybe rely on a Windows Forms TableLayout panel?

If it's essential to try to position based on font sizes, you could use Graphics.MeasureString("String before updown", myLabel.Font)