冰楓論壇's Archiver
論壇
›
C/C++
› [C#] 取得螢幕大小
whitefox
發表於 2023-6-5 09:12:31
[C#] 取得螢幕大小
目前主螢幕全尺寸double width = SystemParameters.PrimaryScreenWidth;
double height = SystemParameters.PrimaryScreenHeight;取得工作區尺寸(不含任務列)double width = SystemParameters.WorkArea.Width;
double height = SystemParameters.WorkArea.Height;
頁:
[1]
查看完整版本:
[C#] 取得螢幕大小