I have this picturebox object picLogo in design mode (pbdesign.jpg)
its Size property is 312px, 67px, its Sizing is set to ScaleProportional
this is how I load a small bmp (24x26) into the picturebox in the code behind:
The result can be seen at pbrunning.jpg
As you can see the small bmp is LEFT justified in the space provided for the picturebox object.
is there any way to RIGHT justify this small bmp?
its Size property is 312px, 67px, its Sizing is set to ScaleProportional
this is how I load a small bmp (24x26) into the picturebox in the code behind:
var bm = new System.Drawing.Bitmap("\\Logos\Image.bmp");
picLogo.Value = bm;
The result can be seen at pbrunning.jpg
As you can see the small bmp is LEFT justified in the space provided for the picturebox object.
is there any way to RIGHT justify this small bmp?