系统 为Moble 6.5 的PDA 怎样 获取 它的 分辨率 是多少呀?
请大虾 帮助一下 呀 --------------------编程问答-------------------- 希望 知道的 帮助一下 ,最好 直接上代码! --------------------编程问答-------------------- 你是用什么语言开发的呀。。 --------------------编程问答-------------------- c# 写的 --------------------编程问答-------------------- 正好我也需要这个,等着回答~ --------------------编程问答-------------------- 系统属性中或许 --------------------编程问答-------------------- 精简框架下有System.Windows.Forms.Screen类Bounds 获取显示的边界。
PrimaryScreen 获取主显示。
WorkingArea 获取显示器的工作区。工作区是显示器的桌面区域,不包括任务栏、停靠窗口和停靠工具栏。
--------------------编程问答-------------------- 这些只是获取当前程序的吧? --------------------编程问答-------------------- int x = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width;
int y = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height;
补充:移动开发 , Windows Phone