程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c#使用WMI對象獲取系統的DPI。

c#使用WMI對象獲取系統的DPI。

編輯:C#入門知識

在使用WMI對象前,先要添加對System.Management的引用,然後就可以調用WMI對象。
我們使用的WMI對象是:Win32_DesktopMonitor
對象參考:http://msdn.microsoft.com/zh-cn/library/Aa394122
代碼:
        static void Main(string[] args) {

            using (ManagementClass mc = new ManagementClass("Win32_DesktopMonitor")) {
                using (ManagementObjectCollection moc = mc.GetInstances()) {

                    int PixelsPerXLogicalInch = 0;  // dpi for x
                    int PixelsPerYLogicalInch = 0;  // dpi for y

                    foreach (ManagementObject each in moc) {
                        PixelsPerXLogicalInch = int.Parse((each.Properties["PixelsPerXLogicalInch"].Value.ToString()));
                        PixelsPerYLogicalInch = int.Parse((each.Properties["PixelsPerYLogicalInch"].Value.ToString()));
                    }

                    Console.WriteLine("PixelsPerXLogicalInch:" + PixelsPerXLogicalInch.ToString());
                    Console.WriteLine("PixelsPerYLogicalInch:" + PixelsPerYLogicalInch.ToString());
                    Console.Read();
                }

            }
        }

以上代碼在WIN7的環境下測試通過。

 

摘自  白色的海

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved