解决方案:(其中 TopMost = true 便可使窗口保持最前端)

public mainFormHandler()
{
    InitializeComponent();
    // set TopMost
    this.TopMost = true;
}

private void mainFormHandler_SizeChanged(object sender, EventArgs e)
{
    if (this.WindowState == FormWindowState.Minimized)
    {
        this.WindowState = FormWindowState.Normal;
    }
    SetParent(this.Handle.ToInt32(), this.Handle.ToInt32());
}
[DllImport(
"user32.dll", EntryPoint = "SetParent")] public static extern int SetParent(int hWndChild, int hWndNewParent);

相关文章:

  • 2022-12-23
  • 2022-01-12
  • 2021-12-01
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-14
  • 2021-07-23
  • 2021-06-23
相关资源
相似解决方案