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






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

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

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

    Label lblAuto = new Label();
    lblAuto.Parent = this;
    lblAuto.Location = new Point(0, 250);
    lblAuto.Size = new Size(75,25);
    lblAuto.TextAlign = ContentAlignment.MiddleRight;
    lblAuto.Text = "AutoSize:";

    PictureBox pbAutoBig = new PictureBox();
    pbAutoBig.Parent = this;
    pbAutoBig.Size = new Size(200, 200);
    pbAutoBig.Location = new Point(75, 250);
    pbAutoBig.BorderStyle = BorderStyle.FixedSingle;
    pbAutoBig.SizeMode = PictureBoxSizeMode.AutoSize;
    pbAutoBig.Image = img;

  }

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

}








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