C# 更改图像时图片框位置发生变化
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是因为
SizeMode
属性设置为AutoSize
,请尝试将其设置为Normal
。祝你好运!
I think that's because the
SizeMode
property is set toAutoSize
, try to set it toNormal
.Good luck!