码迷,mamicode.com
首页 > Windows程序 > 详细

WPF 让窗口激活作为前台最上层窗口的方法

时间:2020-05-28 12:50:49      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:ssi   ati   imp   top   lin   上层   import   inter   static   

原文参照林大佬的博客WPF 让窗口激活作为前台最上层窗口的方法

我只提供下,我使用的代码

[DllImport("user32.dll")]
private static extern IntPtr GetForegroundWindow();

[DllImport("user32.dll")]
private static extern uint GetWindowThreadProcessId(IntPtr hWnd, IntPtr ProcessId);

[DllImport("user32.dll")]
private static extern bool AttachThreadInput(uint idAttach, uint idAttachTo, bool fAttach);

[DllImport("user32.dll")]
public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags);

public static void SetWindowToForegroundWithAttachThreadInput(Window window)
{
    var interopHelper = new WindowInteropHelper(window);
    var thisWindowThreadId = GetWindowThreadProcessId(interopHelper.Handle, IntPtr.Zero);
    var currentForegroundWindow = GetForegroundWindow();
    var currentForegroundWindowThreadId = GetWindowThreadProcessId(currentForegroundWindow, IntPtr.Zero);
    
    AttachThreadInput(currentForegroundWindowThreadId, thisWindowThreadId, true);

    window.Show();
    window.Activate();
     // 去掉和其他线程的输入链接
    AttachThreadInput(currentForegroundWindowThreadId, thisWindowThreadId, false);
    // 用于踢掉其他的在上层的窗口
            window.Topmost = true;
            window.Topmost = false;
}

 

WPF 让窗口激活作为前台最上层窗口的方法

标签:ssi   ati   imp   top   lin   上层   import   inter   static   

原文地址:https://www.cnblogs.com/ZXdeveloper/p/12979902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!