BF2Statistics.ImageForm.ImageForm C# (CSharp) Method

ImageForm() public method

public ImageForm ( Bitmap Image ) : System
Image Bitmap
return System
        public ImageForm(Bitmap Image)
        {
            InitializeComponent();
            pictureBox1.Dock = DockStyle.Fill;
            pictureBox1.Image = Image;
            this.Height = Image.Height;
            this.Width = Image.Width;
        }