GDI+绘制表格时出现问题
我尝试使用 GDI+ 在 C# Windows 窗体的面板上绘制表格。问题是,当我最小化应用程序时,我的绘图消失了。我怎样才能避免这种情况以及为什么要这样做?
I try to draw a table on a panel in C# Windows Form by using GDI+. The problem is that when I minimize the application, my drawing disappears. How can I avoid this and why acting this way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您最小化窗口时,所有内容都会消失。我假设您的意思是当您恢复窗口时该表不再存在。当您不使用 Paint 事件绘制表格而是直接绘制屏幕时,就会发生这种情况。实现面板的Paint事件:
Everything disappears when you minimize a window. I assume you mean that the table isn't there anymore when you restore the window. That will happen when you don't use the Paint event to draw the table but draw the screen directly. Implement the panel's Paint event: