Qt QLabel 字体设置 自适应长度 以及设置字体颜色

m_leID->setPaletteForegroundColor(QColor(0,0,255));

m_leID->adjustSize();


必须要先设置颜色等信息后才能设置自适应长度,这样子才不会丢失自适应设置->adjustSize()后面的信息。


调整QLabel中字体的长度问题,自适应函数->adjustSize()是继承于QWidget中。

你可能感兴趣的:(Qt QLabel 字体设置 自适应长度 以及设置字体颜色)