C#设置图片的大小

2024-11-06 07:35:55
推荐回答(4个)
回答(1):

BackgroundImage的Width, Heigth属性只读,不能被赋值。

你可以通过设置BackgroundImageLayout来实现:

BackgroundImageLayout = ImageLayout.Stretch;

回答(2):

BackgroundImage.Width
BackgroundImage.Height
属性来自图片本身...不可更改
你可以选择panel的填充方式解决

回答(3):

设置panel的dock属性为fill
然后设置panel的BackgroundImageLayout属性为Stretch

回答(4):

好像是 图片的readonly = false 吧