我目前正在使用 WM_PRINT 调用将控件呈现到图形对象中:
GraphicsState backup = graphics.Save();
graphics.TranslateTransform(50, 50);
IntPtr destHdc = graphics.GetHdc();
const int flags = (int)(DrawingOptions.PRF_CHILDREN | DrawingOptions.PRF_CLIENT | DrawingOptions.PRF_NONCLIENT);
NativeMethods.SendMessage(srcControl.Handle, (Int32)WM.WM_PRINT, (IntPtr)destHdc, (IntPtr)flags);
graphics.ReleaseHdc(destHdc);
graphics.DrawLine(Pens.Blue, new Point(), new Point(srcControl.Width, srcControl.Height));
graphics.Restore(backup);
我需要使用 WM_PRINT 命令而不是 control.DrawToBitmap(),因为 DrawToBitmap 方法不处理屏幕外的控件。
代码将正确地将蓝线的绘图转换 50,50,但控件呈现在左上角 (0,0)。有什么方法可以使用 WM_PRINT 命令打印到特定位置(50,50)?
谢谢