Hi, i am using a StackedWidget like this:
clientes = new DialogListaClientes();
articulos = new DialogListaArticulos();
facturas = new DialogListaFacturas();
stackedWidget->addWidget(articulos);
stackedWidget->addWidget(facturas);
stackedWidget->addWidget(clientes);
stackedWidget->setCurrentWidget(clientes);
clientes = new DialogListaClientes();
articulos = new DialogListaArticulos();
facturas = new DialogListaFacturas();
stackedWidget->addWidget(articulos);
stackedWidget->addWidget(facturas);
stackedWidget->addWidget(clientes);
stackedWidget->setCurrentWidget(clientes);
To copy to clipboard, switch view to plain text mode
Now whe i run the app, the three widgets are overlappedd, i mean there are the three visible. That is not correct, only one widget should be showed at time, right?
How can i fix this??
Bookmarks