求高手指点 C#中怎么让背景自动适应窗体

2024-12-16 07:07:38
推荐回答(4个)
回答1:

this.BackgroundImage = Image.FromFile("filename");
this.BackgroundImageLayout = ImageLayout.Stretch; //自适应用Stretch
ImageLayout.Center; // 居中显示
ImageLayout.None; // 左上对齐
ImageLayout.Stretch;// 根据背景大小拉伸
ImageLayout.Tile; // 平铺图片
ImageLayout.Zoom; // 放大图片

回答2:

为窗体的sizechange写一个事件响应就是了。

回答3:

背景控件的dock=full

回答4:

自动适应窗体大小吗?