我正在申请c# WPF
。该应用程序的一部分涉及用户在屏幕上移动项目。要做到这一点,每个项目都有自己的ContentControl
,它的效果非常好。
但是,我现在需要将这些内容控制器的内容输出到bitmap
。
我正在通过
创建位图Bitmap = new Bitmap(width, height)
但是如何添加内容控件输出?
答案 0 :(得分:0)
您可以使用capturescreen将当前窗口转换为图像:
ScreenCapture sc = new ScreenCapture();
// capture entire screen, and save it to a file
Image img = sc.CaptureScreen();
Bitmap = new Bitmap(img)