我正在尝试使用PySide2.QtWidgets中的QApplication,并在控制台中发出有关弃用的警告。
我试图在Google上找到答案,但是找不到。
代码如下:
from PySide2.QtWidgets import QApplication
import sys
QApplication(sys.argv)
python:3.7.3
PySide2:5.12.1
我收到此警告:
Warning: QT_DEVICE_PIXEL_RATIO is deprecated. Instead use:
QT_AUTO_SCREEN_SCALE_FACTOR to enable platform plugin controlled per-screen factors.
QT_SCREEN_SCALE_FACTORS to set per-screen factors.
QT_SCALE_FACTOR to set the application global scale factor.