将图片从一个盒子移动到另一个盒子时出现一个奇怪的小问题
嘿伙计们。 我有这样简单的代码行:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在该语句后添加
Me.Refresh()
。这将调用 Paint 事件(隐藏和显示表单也是如此。
Add
Me.Refresh()
after that statement.This will call the Paint-events (so does hiding and showing your Form.