这是我目前的代码:
private void BrowsePicture_Click(object sender, EventArgs e) // Browse Picture
{
OpenFileDialog OFD = new OpenFileDialog();
if(OFD.ShowDialog()==DialogResult.OK)
{
Bitmap Image = new Bitmap(OFD.FileName);
ProfilePicture.Image = Image;
ProfilePicture.SizeMode = PictureBoxSizeMode.Zoom;
}
}
我想将图像保存在PictureBox
上,这样当软件关闭并稍后再次打开时,图像仍会在那里。这可以通过Properties.Settings
完成吗?
答案 0 :(得分:2)
你在哪里保存这些数据?您应该将设置保存在执行登录操作时可以阅读的位置,然后在PictureBox
中设置值。
编辑:
要将图像保存在特定文件夹中:
Bitmap b = new Bitmap("your image location");
b.Save("your folder location + your image name with extension");
要阅读图片并设置为PictureBox
,请在Load
事件中执行此操作:
pictureBox1.Image = Image.FromFile("your image location");