将图片从一个盒子移动到另一个盒子时出现一个奇怪的小问题

发布于 2024-10-18 23:31:13 字数 251 浏览 2 评论 0原文

嘿伙计们。 我有这样简单的代码行:

Image1.Image = vImage.Image

Image1 是子窗口中的图片框,vImage 是父窗口中的图片框。当我第一次打开子窗口时,我在 Image1 中看到一张完整的空白图片,而同时 vImage 上有一张图片。当我隐藏并再次重新打开它时,上面有图片。有什么问题以及如何在我的代码中解决它?

谢谢

Hey Guys.
I am having this simple line of code:

Image1.Image = vImage.Image

Image1 is a picture box in child window and vImage is a picture box in parent window. When I open the child window for the first time, I see a complete blank picture in Image1 while at the same time vImage is having a picture on it. When I Hide and reopen it again It has the picture on it. What is the problem and how can I fix it in my Code?

Thank you

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

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

发布评论

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

评论(1

遇到 2024-10-25 23:31:13

在该语句后添加 Me.Refresh()
这将调用 Paint 事件(隐藏和显示表单也是如此。

Add Me.Refresh() after that statement.
This will call the Paint-events (so does hiding and showing your Form.

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