怎样更新窗口应用程序的背景啊!
请问哪位知道,窗口应用程序中背景能不能像windows桌面一样可以由用户自己用自己的图片啊!
可以呀,,,有一个属性你改一下就可以了,,,BackgroundImage,,你可以浏览你想要的图片
private void mnuBackPic_Click(object sender,EventArgs e)
{
if(MessageBox.Show("是否更换背景图片?","提示",MessageBoxButtons.YesNo,MessageBoxIcon.Question)==DialogResult.Yes)
{
OpenFileDialog of=new OpenFileDialog();
string filename=of.FileName;
this.BackgroundImage=System.Drawing.Image.FromFile(filename);
}
}