I have a custom control derived from a label. I need to change the native control's location origin from upper left to lower left.
Is there a method or property to do this?
|
|
The
If you're trying to make the
Bear in mind, though, that this won't remain true if the |
||||
|
|
|
If you want to change the behavior of the
This will shift the control up based on the height of the control. So if you start with (100,100) and the label height is 13, you will end with (100,87), which puts the bottom-left corner at (100,100). But this will only happen when the label is added to a container. If you change the Location of the label after adding it to a container, it will go back to the top-right corner. The other thing you might try is overriding |
|||||||||
|