从 WPF 中截取屏幕截图
是否可以对WPF表单上的单个元素进行屏幕截图?我需要截取“边框”工具及其子工具的屏幕截图。
Is it possible to take screenshot of the single element on WPF form? I need to take screenshot of a "border" tool and its child.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 RenderTargetBitmap 来渲染视觉效果,如果您在 SO 上搜索它,如果参考文献不够,应该会出现一些有帮助的问题。
另外这篇外部文章可能会有所帮助。
You can use RenderTargetBitmap to render visuals, if you search for it on SO there should be some questions that help if the reference is not enough.
Further this external article might help.
将 source 视为您要截取屏幕截图的元素。这是我将其保存到剪贴板的代码。
considering source to be the element that you want to take a screenshot. This is the code that I have which saves it to the clipboard.