建设电子商务网站,在线做网站视频在线观看,山西城乡建设厅网站,中国人做跨电商有什么网站最初的做法是#xff0c;直接将父窗体的Image属性改成背景图片#xff0c;并将其BackgroundImageLayout属性设置为stretch#xff0c;结果发现这样做的结果是系统运行超级慢#xff0c;便考虑用代码实现#xff0c;如下#xff1a; //this.BackgroundImage System.Draw… 最初的做法是直接将父窗体的Image属性改成背景图片并将其BackgroundImageLayout属性设置为stretch结果发现这样做的结果是系统运行超级慢便考虑用代码实现如下 //this.BackgroundImage System.Drawing.Bitmap.FromFile(background.jpg);或者this.BackgroundImage new Bitmap(background.jpg);this.BackgroundImageLayout ImageLayout.Stretch;以上代码虽然实现了功能但发现窗体改变大小时背景图片出现层叠重影的问题于是考虑在父窗体的SizeChanged属性再次加入以上代码于是获得了可喜的效果。 this.BackgroundImage null;this.BackgroundImage new Bitmap(background.jpg);