I have a PictureBox
that is docked in the upper left corner of a form. It is contained inside of a SplitContainer
, and the PictureBox
is set to Fill the side of the panel that it resides:
SplitContainer:
___________________
| _________ >
| | | >
| | LogoBox | >
| |_________| >
|___________________>
I have the SizeMode
set to Zoom so that the image will be resized to fit the bounds of the PictureBox
. By default, the image is centered with this SizeMode
. I am wondering if it is possible to force the image to be left-aligned instead of centered.
Thanks in advance!