码迷,mamicode.com
首页 > Windows程序 > 详细

C#:屏幕显示区域问题

时间:2016-05-06 14:41:36      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

更改电脑屏幕显示的文字大小后,平面显示区域问题。

技术分享
/// <summary>
        /// 屏幕显示尺寸
        /// </summary>
        public static Size ReviseScreenSize
        {
            get
            {
                float pixels = getLogPiex();
                float dxPrecent = 96 / pixels; //pixels / 96;
                Screen s = Screen.PrimaryScreen;
                Size primarySize = s.Bounds.Size;
                Size returnSize = new Size();
                returnSize.Width = (int)(primarySize.Width * dxPrecent);
                returnSize.Height = (int)(primarySize.Height * dxPrecent);
                return returnSize;
            }
        }

        public static float getLogPiex()
        {
            float returnValue = 96;
            RegistryKey key = Registry.CurrentUser;
            RegistryKey pixeKey = key.OpenSubKey("Control Panel\\Desktop");
            if (pixeKey != null)
            {
                var pixels = pixeKey.GetValue("LogPixels");
                if (pixels != null)
                {
                    returnValue = float.Parse(pixels.ToString());
                }
                pixeKey.Close();
            }
            return returnValue;
        }
View Code

 

C#:屏幕显示区域问题

标签:

原文地址:http://www.cnblogs.com/shenchao/p/5465533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!