C# picturebox 没有自带尺寸

发布于 2024-11-04 14:51:05 字数 35 浏览 0 评论 0原文

当我用 C# 将图像添加到图片框中时,它不具有实际大小。

When I add an image into picturebox with C#, it does not come with actual size.

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

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

发布评论

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

评论(1

把昨日还给我 2024-11-11 14:51:05

不,默认情况下它不具有实际尺寸。

不过,它确实附带了手册,仔细阅读就会发现,关键在于将控件的 SizeMode 属性设置为 PictureBoxSizeMode 您想要的值。

在本例中,我怀疑这是 AutoSize,它确保图片框控件根据其显示的图像的实际大小调整大小。

您可以在 Visual Studio 设计器中使用“属性”窗口设置此属性,也可以通过在窗体的构造函数方法中使用以下行的代码来设置此属性:

myPictureBox.SizeMode = PictureBoxSizeMode.AutoSize;

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 the PictureBoxSizeMode 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:

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