我在做一個圖片查看器。我已經完成了在圖片框中導入圖片的工作。在圖片框中自動調整圖片
哪些代碼應該用於自動調整圖片框中的圖片?這是我在查看圖片框中的圖片的代碼。
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Multiselect = true;
openFileDialog.Filter = "JPEG|*.jpg|Bitmaps|*.bmp";
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
pFileNames = openFileDialog.FileNames;
pCurrentImage = 0;
ImageView();
}
}
protected void ImageView()
{
if (pCurrentImage >= 0 && pCurrentImage <= pFileNames.Length - 1)
{
pictureBox1.Image = Bitmap.FromFile(pFileNames[pCurrentImage]);
}
}
你要自動調整圖像本身,或者PictureBox的? – AssaultingCuccos
我認爲這是picturbox1.SizeMode = SizeMode.Zoom。你會在圖片框的屬性中找到它。 – WozzeC
@弗羅里斯圖像先生.. – Jay