设置应用程序窗体背景图像,C#源代码OpenFileDialog MyDlg = new OpenFileDialog();
设置应用程序窗体背景图像,C#源代码OpenFileDialog MyDlg = new OpenFileDialog(); MyDlg.Filter = "图像文件(JPeg, Gif, Bmp, etc.)|*.jpg;*.jpeg;*.gif;*.bmp;*.tif; *.tiff; *.png| JPeg图像文件(*.jpg;*.jpeg)| *.jpg;*.jpeg |GIF图像文件(*.gif)|*.gif |BMP files (*.bmp)|*.bmp|Tiff图像文件(*.tif;*.tiff)|*.tif;*.tiff|Png图像文件(*.png)| *.png |所有文件(*.*)|*.*"; if (MyDlg.ShowDialog() == DialogResult.OK) { string MyFileName = MyDlg.FileName; this.BackgroundImage = Image.FromFile(MyFileName); this.B ackgroundImageLayout = ImageLayout.Stretch; VisualStudio2008创建
用户评论
这都要分???
对设计界面和有帮助,顶一下