I have a tab-control and it contains 1 tab view and in it there are 3 different picture-boxes which contain the 3 different images, besides each other, now the thing is that I have set the picture-boxes according to my monitor settings, but what I want is the form and picture boxes should remain exactly the same as per any screen settings, either it is low resolution or high, I tried and achieved one of the picture-boxes, but not able to set the other accordingly, can any body show me how to do it?. Images should remain in center of the tab view accordingly like this.
Bitmap b = new Bitmap(500, 500);
pbox_View_Angle.Size = b.Size;
var left = (tabPage1.ClientRectangle.Width - pbox_View_Angle.ClientRectangle.Width) / 4;
var top = (tabPage1.ClientRectangle.Height - pbox_View_Angle.ClientRectangle.Height) / 2;
pbox_View_Angle.Location = new Point(tabPage1.ClientRectangle.Location.X + left, tabPage1.ClientRectangle.Location.Y + top);
pbox_View_Height.Location = new Point(tabPage1.ClientRectangle.Location.X + left + 400, tabPage1.ClientRectangle.Location.Y + top);
pbox_View_Azimuth.Location = new Point(tabPage1.ClientRectangle.Location.X + left + 800, tabPage1.ClientRectangle.Location.Y + top);`