Ok, and one more question.
I have mainWidget, that contain several other widget (window),
and when I do following code, on my mainWidget I see other widget... I don't want that it show on mainWidget..
class MainWidget : public QMainWidget
{
Q_OBJECT
public:
MainWidget()
{
myForm = new MyForm(this);
}
private:
MyForm *myForm;
}
class MainWidget : public QMainWidget
{
Q_OBJECT
public:
MainWidget()
{
myForm = new MyForm(this);
}
private:
MyForm *myForm;
}
To copy to clipboard, switch view to plain text mode
How to do myForm as a child without showing on MainWidget?
Bookmarks