this.BackgroundImage = Image.FromFile("filename");
this.BackgroundImageLayout = ImageLayout.Stretch; //自适应用Stretch
ImageLayout.Center; // 居中显示
ImageLayout.None; // 左上对齐
ImageLayout.Stretch;// 根据背景大小拉伸
ImageLayout.Tile; // 平铺图片
ImageLayout.Zoom; // 放大图片
为窗体的sizechange写一个事件响应就是了。
背景控件的dock=full
自动适应窗体大小吗?