GDI+绘制表格时出现问题

发布于 2024-08-29 03:07:27 字数 86 浏览 5 评论 0原文

我尝试使用 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 技术交流群。

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

发布评论

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

评论(1

陌伤ぢ 2024-09-05 03:07:27

当您最小化窗口时,所有内容都会消失。我假设您的意思是当您恢复窗口时该表不再存在。当您不使用 Paint 事件绘制表格而是直接绘制屏幕时,就会发生这种情况。实现面板的Paint事件:

private void panel1_Paint(object sender, PaintEventArgs e) {
  e.Graphics.DrawLine(Pens.Black, 0, 0, panel1.Width, 0);
  // etc...
}

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:

private void panel1_Paint(object sender, PaintEventArgs e) {
  e.Graphics.DrawLine(Pens.Black, 0, 0, panel1.Width, 0);
  // etc...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文