Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何在第二台显示器上打开帮助。我正在使用 Help.ShowHelp(null, path, TopicId, index) 谢谢
您不能修改 ShowHelp-Methode 以显示在第二个屏幕上。如果您需要更多控制以显示您必须自己实施的帮助。我能想到的唯一可能的解决方案是通过其进程 ID 获取帮助窗口并使用 user32.dll 重新定位它,但这不是一个非常简洁的解决方案。
[DllImport("user32.dll")] private static extern bool SetWindowPos(IntPtr hWnd, IntPtr hAfter, int x, int y, int cx, int cy, int flags);