Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. delete Item and load another on the same ApplicationWindow
Forum Updated to NodeBB v4.3 + New Features

delete Item and load another on the same ApplicationWindow

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
1 Posts 1 Posters 132 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    RLocksley
    wrote on last edited by
    #1

    Hey,
    I have this Application which shows an Item and on ButtonClick it loads another qml file.

    My Question is how do I close/delete "rootItem" instead of only set

    rootItem.visible = false
    

    because I dont need it anymore after the Button is clicked.

    ApplicationWindow  {
            id: mainWindow
            .....
    
            Item {
               id: rootItem
             .....
               Button {
                   id: okButton
                   text: "OK"
                   onClicked: { coreApp.receiveOkButtonClick() }
               }
            }
    
           Connection{
                target: coreApp
    
                onLoadPage: {
                   var component
                   var connectionPage
                   component = Qt.createComponent( "qrc:/Page.qml" )
                   rootItem.visible = false
                   connectionPage = component.createObject( mainWindow )
           
                   }
            }
    }
    
    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved