是否有一种简单的方法可以使(全屏)WPF应用程序在辅助显示器上启动?我知道我可以得到整个虚拟桌面矩形并计算偏移量,但有更直接的方法吗?
AFAIK目前没有办法纯粹使用WPF.
但是你应该能够:
使用System.Windows.Forms.Screen该类获取有关屏幕的信息
System.Windows.Forms.Screen
重新定位你的窗口:
Application.Current.MainWindow.Left = xxx; Application.Current.MainWindow.Top = yyy;
Application.Current.MainWindow.Left = xxx;
Application.Current.MainWindow.Top = yyy;