gpt4 book ai didi

c# - 如何将 WPF 窗口发送到后面?

转载 作者:可可西里 更新时间:2023-11-01 08:35:32 25 4
gpt4 key购买 nike

在我的应用程序中,我有一个用于绘制调试数据的窗口。当它加载时,我想在所有其他窗口后面“在后台”打开它。

实现此目标的最佳方法是什么?

最佳答案

您可以使用以下代码:

[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, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE);
}

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

关于c# - 如何将 WPF 窗口发送到后面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1181336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com