从 WPF 应用程序窗口获取位图?
Winforms System.Windows.Forms.Control 类有一个实例方法“DrawToBitmap”,我认为它在各种情况下都非常有用。 我想知道是否有从 WPF 应用程序获取 System.Drawing.Bitmap 的等效方法?
我意识到我可以做一些 P/Invoke 的事情来获取应用程序窗口,但是我不喜欢这样做,因为它不能很好地适应 64 位转换,并且不允许我仅渲染子控件,如 DrawToBitmap做。
谢谢, 理查德
The Winforms System.Windows.Forms.Control class has an instance method "DrawToBitmap" which I think is very useful in a variety of circumstances. I'm wondering if there's an equivalent way of getting a System.Drawing.Bitmap from a WPF application?
I realize I could do some P/Invoke stuff to just get the application window, however I don't like this because it doesn't accomodate the 64bit transition very well, and doesn't let me render sub-controls only, as DrawToBitmap does.
Thanks,
Richard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
按照 MSDN 上的方式使用 RenderTargetBitmap
Use RenderTargetBitmap as on MSDN
TFD 非常到位。
您还可以使用 MSDN 中不太优雅的参考示例:
TFD is spot on.
You could also use the less elegant reference example from MSDN: