如何在WPF中更改屏幕分辨率?
如何在 WPF 中以编程方式更改屏幕分辨率? 我怎样才能获得可用的显示分辨率列表?
我尝试尝试一下本文中描述的示例: http:// www.c-sharpcorner.com/UploadFile/Joshy_geo/changescreenresolution10102006112110AM/changescreenresolution.aspx 但Screen 和Resolution 类不存在于System.Diagnostics 命名空间中。
C#/WPF
谢谢。
how can I change screen resolution programmatically in WPF?
And how can I get a list of available resolutions for display?
I tried have a go at the example described in this article: http://www.c-sharpcorner.com/UploadFile/Joshy_geo/changescreenresolution10102006112110AM/changescreenresolution.aspx But Screen and Resolution classes do not exist in the System.Diagnostics namespace.
C#/WPF
Thanx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉给您带来麻烦了。我找到了 Windows 窗体的解决方案并做了一些小的更改。
WPF 解决方案
在窗口上放置两个列表框(listDevices 和 listSettings)和按钮(btnSave)。
<代码>
使用系统;
使用 System.Runtime.InteropServices;
使用系统.Windows;
using System.Windows.Controls;
WPF 屏幕分辨率 来源:http:// /www.mediafire.com/?ciiymhmc7v28v4y
Sorry for the trouble. I found the solution for Windows Forms and made minor changes.
WPF Solution
Place two Listbox (listDevices and listSettings) and Button (btnSave) on the window.
using System;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Controls;
WPF Screen Resolution Source: http://www.mediafire.com/?ciiymhmc7v28v4y