人人人人人人人人人人人人

uwp 获取屏幕分辨率

 

   public static Size ScreenSize
        {
            get
            {
                //screen resolution
                 var height = DisplayInformation.GetForCurrentView().ScreenHeightInRawPixels;
                 var width = DisplayInformation.GetForCurrentView().ScreenWidthInRawPixels;
                return new Size(width,height);
            }

        }

  

posted @ 2021-06-07 14:23  wgscd  阅读(97)  评论(0编辑  收藏  举报