CenterImage PictureBox : PictureBox « GUI Windows Forms « C# / CSharp Tutorial






CenterImage PictureBox
using System;
using System.Drawing;
using System.Windows.Forms;

public class PictureBoxCenterImage : Form
{
  public PictureBoxCenterImage()
  {
    Size = new Size(550,500);
    AutoScroll = true;

    Image img = Image.FromFile("YourFile.bmp");

    Label lblCenter = new Label();
    lblCenter.Parent = this;
    lblCenter.Location = new Point(0,480);
    lblCenter.Size = new Size(75,25);
    lblCenter.TextAlign = ContentAlignment.MiddleRight;
    lblCenter.Text = "CenterImage:";

    PictureBox pbCenterBig = new PictureBox();
    pbCenterBig.Parent = this;
    pbCenterBig.Size = new Size(200, 200);
    pbCenterBig.Location = new Point(75,480);
    pbCenterBig.BorderStyle = BorderStyle.FixedSingle;
    pbCenterBig.SizeMode = PictureBoxSizeMode.CenterImage;
    pbCenterBig.Image = img;

    PictureBox pbCenterSmall = new PictureBox();
    pbCenterSmall.Parent = this;
    pbCenterSmall.Size = new Size(100, 100);
    pbCenterSmall.Location = new Point(325,480);
    pbCenterSmall.BorderStyle = BorderStyle.FixedSingle;
    pbCenterSmall.SizeMode = PictureBoxSizeMode.CenterImage;
    pbCenterSmall.Image = img;


  }

  static void Main() 
  {
    Application.Run(new PictureBoxCenterImage());
  }
}








23.22.PictureBox
23.22.1.Normal PictureBoxNormal PictureBox
23.22.2.AutoSize PictureBoxAutoSize PictureBox
23.22.3.CenterImage PictureBoxCenterImage PictureBox
23.22.4.StretchImage PictureBoxStretchImage PictureBox
23.22.5.Create an in-memory bitmap and draw and Display the bitmap in the picture boxCreate an in-memory bitmap and draw and Display the bitmap in the picture box
23.22.6.Drag and Drop ImageDrag and Drop Image
23.22.7.Add Image to PictureBoxAdd Image to PictureBox
23.22.8.Change PictureBox CursorChange PictureBox Cursor