如何将屏幕保存为 C# 中 .NET 表单应用程序的图像

发布于 2024-08-14 12:01:28 字数 98 浏览 2 评论 0原文

我有一个 .NET 3.5 Windows 窗体应用程序。当用户输入数据并单击“保存”时,我想将整个表单保存为图像文件。

我该怎么做?

谢谢, 查克。

I have a .NET 3.5 Windows forms application. When the user keys in data and clicks 'Save', i want to save the entire form as an image file.

How can i do this ?

Thanks,
Chak.

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

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

发布评论

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

评论(2

转身泪倾城 2024-08-21 12:01:28

看看 我对这个问题的回答。它展示了如何截取整个屏幕的屏幕截图。

Have a look at my answer on this question. It shows how to take a screenshot of the whole screen.

書生途 2024-08-21 12:01:28

您可以创建屏幕大小的位图(System.Windows.Forms.Screen 类),为其创建 System.Drawing.Graphics 对象 (Graphics.FromImage),然后使用 Graphics.CopyFromScreen。

您也许还可以使用 Form.DrawToBitmap。

You can create a bitmap in size of your screen (System.Windows.Forms.Screen class), create a System.Drawing.Graphics object for it (Graphics.FromImage) and then use Graphics.CopyFromScreen.

You may ve also able to use Form.DrawToBitmap.

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