WPF 弹出控件在具有不同分辨率的两个显示器设置上的放置
我在我的开发机器上使用两个具有不同分辨率的显示器。分辨率较小的显示器被配置为主显示器。如果我在辅助显示屏上最大化 WPF 应用程序并在底部显示弹出控件,则它会重新定位:
我猜,框架使用主显示器的较低分辨率来检查弹出窗口是否必须重新定位。 WPF 框架不会检查当前的显示分辨率还是我必须自己配置?
I use two displays with different resolutions on my development machine. The display with a smaller resolution is configured as primary display. If I maximize my WPF application on the secondary display and show a popup control at the bottom it appears repositioned:
I guess, the framework uses the lower resolution of the primary display to check if the popup window has to be repositioned. Doesn't the WPF framework check for the current display resolution or do I have to configure this myself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在两个显示器上重新定位弹出控件,最好根据 MainWindow 的 PointToScreen 属性设置弹出控件 Horizontal 和 Vertical 偏移量
For repositioning popup control on two monitor, better to set Popup control Horizontal and Vertical offset based on PointToScreen property of MainWindow