Windows Activation Process: Keep Its Window on Top

2022年11月16日 16点热度 0人点赞 0条评论
内容目录

示例代码如下:

void Main()
{
	string pName = "程序的名称";
	Process[] temp = Process.GetProcessesByName(pName);
	if (temp.Length > 0)
	{
		IntPtr handle = temp[0].MainWindowHandle;
		SwitchToThisWindow(handle, true);
	}
}

[DllImport("user32.dll")]
public static extern void SwitchToThisWindow(IntPtr hWnd, bool fAltTab);

The selected program's window will be activated, and then the window will expand, bringing it to the front of all windows.

痴者工良

高级程序员劝退师

文章评论