图片框背景图像属性 C#
有人可以刷新我如何以编程方式设置图片框的背景图像吗?
非常感谢!
can someone please refresh me how I can programatically set the background image of a picture box?
Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
图片框同时具有
Image
和Background Image
属性来设置
Background Image
您必须设置pictureBox1.BackgroundImage=your_Image;
和
Image
属性pictureBox1.Image=your_Image;
Picture Box have both
Image
andBackground Image
Propertyto set
Background Image
you have to setpictureBox1.BackgroundImage=your_Image;
and for
Image
propertypictureBox1.Image=your_Image;
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)