C# 更改图像时图片框位置发生变化

发布于 2024-10-15 03:53:30 字数 246 浏览 0 评论 0原文

我有一个 PictureBox,当我由于某种原因更改图像时,PictureBox 的位置无法正确显示。它显示在左下角而不是左上角。

如果我检查顶部、左侧、位置等的值,它们都是正确的。有什么我忘记了吗?

 myPictureBox.Image = image;
 myPictureBox.Location = new Point(0,0);

I have a PictureBox and when I change the image for some reason the location of the PictureBox isn't displayed correctly. It is displayed in the lower left corner instead of the top left.

If I check the values of top, left, location etc. it is all correct. Is there something I am forgetting?

 myPictureBox.Image = image;
 myPictureBox.Location = new Point(0,0);

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

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

发布评论

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

评论(1

可是我不能没有你 2024-10-22 03:53:30

我认为这是因为 SizeMode 属性设置为 AutoSize,请尝试将其设置为 Normal

祝你好运!

I think that's because the SizeMode property is set to AutoSize, try to set it to Normal.

Good luck!

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