c# – 如何发送一个WPF窗口到后面?

前端之家收集整理的这篇文章主要介绍了c# – 如何发送一个WPF窗口到后面?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序中,我有一个窗口用于绘制调试数据.当它加载时,我想打开它“在后台”,在所有其他窗口后面.

什么是实现这一目标的最佳方法

解决方法

您可以使用以下代码
[DllImport("user32.dll")]
static extern bool SetWindowPos(
    IntPtr hWnd,IntPtr hWndInsertAfter,int X,int Y,int cx,int cy,uint uFlags);

const UInt32 SWP_NOSIZE = 0x0001;
const UInt32 SWP_NOMOVE = 0x0002;

static readonly IntPtr HWND_BOTTOM = new IntPtr(1);

static void SendWpfWindowBack(Window window)
{
    var hWnd = new WindowInteropHelper(window).Handle;
    SetWindowPos(hWnd,HWND_BOTTOM,SWP_NOSIZE | SWP_NOMOVE);
}

资料来源:http://www.aeroxp.org/board/lofiversion/index.php?t4983.html

原文链接:https://www.f2er.com/csharp/94262.html

猜你在找的C#相关文章