c# 将当前窗体设置为活动窗体

获取当前句柄,并调用API函数

[System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint = "SetForegroundWindow")]
public static extern bool SetForegroundWindow(IntPtr hWnd);//设置此窗体为活动窗体

例文地址


你可能感兴趣的:(c# 将当前窗体设置为活动窗体)