label:
在QtGuiApplication2.cpp
#include
QLabel *label1 = new QLabel("test123", this);...//label1->move(100,100);
label1->setGeometry(50, 70, 160, 30);
在main.cpp 可以这样
QLabel label1("test123....setGeometry(50, 70, 160, 30);
QT QLabelde 使用技巧总结:
https://www.cnblogs.com/wanghuixi/p/9521717.html
QLabel...然而在使用过程中,我发现QLabel的setPixmap(const QPixmap &)和setText(const QString &)是互斥的,即两个同时设置时,只有一个生效(最后设置的那个生效)...示例代码及现象如下:
QLabel *m_pLblPixmap = new QLabel("This is pixmap",this);
m_pLblPixmap->resize(50, 50)