图片框背景图像属性 C#

发布于 2024-10-01 04:07:28 字数 47 浏览 1 评论 0原文

有人可以刷新我如何以编程方式设置图片框的背景图像吗?

非常感谢!

can someone please refresh me how I can programatically set the background image of a picture box?

Thank you very much!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

善良天后 2024-10-08 04:07:29

图片框同时具有 ImageBackground Image 属性

来设置 Background Image 您必须设置 pictureBox1.BackgroundImage=your_Image;

Image 属性 pictureBox1.Image=your_Image;

Picture Box have both Image and Background Image Property

to set Background Image you have to set pictureBox1.BackgroundImage=your_Image;

and for Image property pictureBox1.Image=your_Image;

友欢 2024-10-08 04:07:28

PictureBox.Image< /a>

--更新

您需要一个图像对象。您可以使用静态函数 image.fromfile

PictureBox.Image = Image.FromFile (路径)

PictureBox.Image

--Update

You need an image object. You can use the static function image.fromfile

PictureBox.Image = Image.FromFile(Path)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文