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.
我一直在寻找一种在特定于其所有者的位置生成 WPF 窗口的方法。我希望窗口在所有者的左上角产生。可能吗?如果是这样,那么如何实现呢?
只是为了澄清这个场景,我正在 WPF 中开发一个使用 c++ dll 执行的工具(使用 ShellExecuteA)
谢谢。
您可以通过代码设置位置来尝试此操作。
myWindow.Left = myWindow.Owner.Left; myWindow.Top = myWindow.Owner.Top;