原因:在qtdesigner中字体是按磅设置大小,显示比例不同时,每磅占的像素数量也会改变。
因此要改成用像素设置大小。
在main.cpp中
#include
QFont font = w.font();//w为基类的名字
font.setPixelSize(12);//12可根据需要修改
w.setFont(font);
来源:CSDN
作者:岁三suis
链接:https://blog.csdn.net/qq_27776845/article/details/103985382