Custom Control Height Property

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

I am creating a custom control. As part of this I want to lock the
height of the control at design time, much like a textBox control when
first placed on a form. How can this be accomplished?

-Rob-
 
I am creating a custom control. As part of this I want to lock the
height of the control at design time, much like a textBox control when
first placed on a form. How can this be accomplished?

-Rob-

Trap the resize event and re-set the height there to what you
want it to be.
 
Back
Top