我有一些问题。
我在表单中有一个面板和一个PictureBox。
我想打开一个Windows应用程序(例如记事本)并将其作为面板的父级。
然后,我想在PictureBox中显示面板内容的图像:
我的代码:
[DllImport("user32.dll", SetLastError = true)]
private static extern long SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
[DllImport("user32.dll", SetLastError = true)]
private static extern long SetWindowPos(IntPtr hwnd, long hWndInsertAfter, long x, long y, long cx, long cy, long wFlags);
[DllImport("user32.dll", SetLastError = true)]
private static extern bool MoveWindow(IntPtr hwnd, int x, int y, int cx, int cy, bool repaint);
IntPtr appWin1;
private void Notepad_Button_Click(object sender, EventArgs e)
{
ProcessStartInfo ps1 = new ProcessStartInfo(@"notepad.exe");
ps1.WindowStyle = ProcessWindowStyle.Minimized;
Process p1 = Process.Start(ps1);
System.Threading.Thread.Sleep(5000); // Allow the process to open it's window
appWin1 = p1.MainWindowHandle;
// Put it into this form
SetParent(appWin1, this.panel1.Handle);
}
private void timer1_Tick(object sender, EventArgs e)
{
Bitmap bm = new Bitmap(panel1.Width, panel1.Height);
Graphics g = Graphics.FromImage(bm);
g.CopyFromScreen(0, 0, 0, 0, bm.Size);
pictureBox1.Image = bm;
}
private void Form5_Load(object sender, EventArgs e)
{
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
}
private void timer2_Tick(object sender, EventArgs e)
{
MoveWindow(appWin1, 0, 0, this.panel1.Width, this.panel1.Height, true);
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
运行此代码:
问题是这样的:我只想得到面板内部的内容,但任何其他移动到面板前面的窗口都包含在PictureBox中显示的位图中:
[
} 3
如图所示,当外部页面放置在panel1
上时,它也会显示在pictureBox1
中(图片中的红色框)。
我只希望记事本出现在pictureBox1
中,无论什么窗口悬停在panel1
上。
1条答案
按热度按时间x3naxklr1#
因为你想将Panel的内容渲染为Bitmap(它是一个外部应用程序),所以你不能使用Control.DrawToBitmap():将不会打印托管应用程序的内容,父级调用
SetParent()
。由于您还希望从渲染中排除可能悬停在Panel上方的任何其他窗口,因此可以使用PrintWindow函数,传递Panel父窗体的句柄。
表单将接收
WM_PRINT
或WM_PRINTCLIENT
消息,并将自身打印到指定的设备上下文:在本例中,它是从位图生成的。这不是截图:Windows将其自身及其内容绘制到DC,因此其他Windows是否悬停/部分或完全重叠它并不重要,结果都是一样的。
我使用DwmGetWindowAttribute,设置
DWMWA_EXTENDED_FRAME_BOUNDS
,获取要打印的窗口的边界。这可能看起来是“多余的”,但是,如果您的应用不是DpiAware,并且您有一个High-Dpi屏幕,那么在这种情况下它将显得不那么多余。最好有它,IMO。这个函数比
GetWindowRect
或GetClientRect
更可靠,它将在可变DPI上下文中返回正确的度量值。你不能将子窗口的句柄传递给这个函数,所以我使用父窗体的句柄来生成位图,然后选择Panel所在的部分。这取决于:
[ParentForm].RectangleToClient([Child].RectangleToScreen([Child].ClientRectangle))
启动Panel控件的Process和父Notepad窗口:
现在,无论何时你想将面板所在的窗体部分渲染到Bitmap,调用RenderWindow并获取你感兴趣的部分:面板的ClientRectangle。
Win32声明: