C# picturebox 没有自带尺寸
当我用 C# 将图像添加到图片框中时,它不具有实际大小。
When I add an image into picturebox with C#, it does not come with actual size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当我用 C# 将图像添加到图片框中时,它不具有实际大小。
When I add an image into picturebox with C#, it does not come with actual size.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
不,默认情况下它不具有实际尺寸。
不过,它确实附带了手册,仔细阅读就会发现,关键在于将控件的
SizeMode
属性设置为PictureBoxSizeMode
您想要的值。在本例中,我怀疑这是
AutoSize
,它确保图片框控件根据其显示的图像的实际大小调整大小。您可以在 Visual Studio 设计器中使用“属性”窗口设置此属性,也可以通过在窗体的构造函数方法中使用以下行的代码来设置此属性:
No, by default it does not come with actual size.
It does, however, come with a manual, a careful perusal of which reveals that the key lies in setting the control's
SizeMode
property to thePictureBoxSizeMode
value that you desire.In this case, I suspect that's
AutoSize
, which ensures that the picture box control is resized according to the actual size of the image that it displays.You can set this property either in the Visual Studio designer using the Properties window, or through code using the following line in your form's constructor method: