Qt::KeepAspectRatio在哪个头文件
时间: 2024-01-05 16:04:07 浏览: 107
头文件
`Qt::KeepAspectRatio`是一个枚举值,定义在 Qt 库的头文件 `Qt` 中。你需要包含以下代码来使用它:
```cpp
#include <Qt>
```
或者你可以只包含需要使用的枚举值:
```cpp
#include <QtGlobal>
Qt::AspectRatioMode mode = Qt::KeepAspectRatio;
```
注意,枚举值 `Qt::KeepAspectRatio` 是 `Qt::AspectRatioMode` 枚举类型的一个成员,因此你需要使用 `Qt::AspectRatioMode` 来声明变量。
阅读全文