Results 1 to 6 of 6

Thread: StackedWidget overlapped

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Jul 2006
    Posts
    10
    Thanks
    4
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default StackedWidget overlapped

    Hi, i am using a StackedWidget like this:

    Qt Code:
    1. clientes = new DialogListaClientes();
    2. articulos = new DialogListaArticulos();
    3. facturas = new DialogListaFacturas();
    4. stackedWidget->addWidget(articulos);
    5. stackedWidget->addWidget(facturas);
    6. stackedWidget->addWidget(clientes);
    7. 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??
    Attached Images Attached Images

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.