I'm not sure if QLabel is what your looking for or not ....
I think QLabel inherits from QFrame.Code:#include <qapplication.h> #include <qlabel.h> int main(int argc, char *argv[]) { ...... QLabel* label = new QLabel("QT Application", parent); // resize the label label->resize(100,50); ..... }


Reply With Quote
Bookmarks