欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

windows phone开发之获取屏幕分辨率 和 系统版本

程序员文章站 2023-01-23 11:54:00
屏幕分辨率大小(这个目前都是480*800): 屏幕宽度(double)  system.windows.application.current.host.content.actualwi...
屏幕分辨率大小(这个目前都是480*800):
屏幕宽度(double)  system.windows.application.current.host.content.actualwidth
屏幕高度(double)  system.windows.application.current.host.content.actualheight
 
操作版本:
system.environment.osversion.tostring()


摘自 fengyarongaa