windows api获取电脑屏幕大小
时间: 2024-05-10 22:19:56 浏览: 126
您可以使用以下的Windows API函数来获取电脑屏幕的大小:
```c++
int screenWidth = GetSystemMetrics(SM_CXSCREEN);
int screenHeight = GetSystemMetrics(SM_CYSCREEN);
```
其中,`SM_CXSCREEN` 表示屏幕宽度,`SM_CYSCREEN` 表示屏幕高度。
阅读全文