Baka_MPlayer.Forms.SnapshotForm.snapshotPicbox_SizeChanged C# (CSharp) Method

snapshotPicbox_SizeChanged() private method

private snapshotPicbox_SizeChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void snapshotPicbox_SizeChanged(object sender, EventArgs e)
        {
            if (snapshotPicbox.Width <= snapshotPicbox.Image.Width ||
                snapshotPicbox.Height <= snapshotPicbox.Image.Height)
                snapshotPicbox.SizeMode = PictureBoxSizeMode.Zoom;
            else
                snapshotPicbox.SizeMode = PictureBoxSizeMode.CenterImage;
        }