6

我的目标是更改背景图像并将其 SizeMode 设置为 Stretch。到目前为止尝试了很多,有什么想法吗?

编辑:我正在使用 C# 表单应用程序。尝试简单地设置 bg 图片的大小模式:

picturebox1.BackgroundImage = Properties.Resources.Image;
picturebox1.SizeMode = PictureBoxSizeMode.StretchImage;

试图绕过它...没有成功...

4

1 回答 1

17

看看BackgroundImageLayout
例子:

whatever.BackgroundImageLayout = ImageLayout.Stretch
于 2012-04-18T14:19:59.170 回答