将C#Windows窗体置于另一个窗口中

我希望我的表单启动并在相对于调用表单时处于活动状态的窗口的中心打开.假设Firefox处于活动状态并显示表单,我希望我的表单显示在firefox窗口的“中心”.

我认为我可以通过使用user32.dll中的SetWindowPos来实现这一点,但我是
不太确定是否有更简单的方法.

我已经玩过SetWindowPos并且发现我可以轻松地将窗口放在整个屏幕上,但是我不太确定我应该在哪里开始将它相对于另一个窗口居中.

基本上,我需要:

>抓窗位置/大小
>做数学计算,找到中心的坐标减去我的表格大小到准备
>显示我的表格并使用设置窗口pos正确定位?

注意:CenterParent不适用于此,它似乎只适用于另一个Form控件.我想在其他窗口中使用它,比如Firefox.

最佳答案 如果您希望新窗口相对于父窗口居中,则可以将子窗体的“StartPosition”设置为“CenterParent”.如果你想让新窗口相对于其他窗口居中,那么我认为你已经处理了
Windows API.

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


private IntPtr GetActiveWindow()  
{  
    IntPtr handle = IntPtr.Zero;  
    return GetForegroundWindow();  
}

Then get the window position with GetWindowRect.

[DllImport("user32.dll")]  
[return: MarshalAs(UnmanagedType.Bool)]  
static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);  

[StructLayout(LayoutKind.Sequential)]  
public struct RECT  
{
    public int Left;        // x position of upper-left corner  
    public int Top;         // y position of upper-left corner  
    public int Right;       // x position of lower-right corner  
    public int Bottom;      // y position of lower-right corner  
}
点赞