Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. ui.qml
    Log in to post

    • UNSOLVED Adding Ui components/icons in Qt designer
      Tools • ui design ui.qml uiplugin uikit • • urmoneyapp  

      1
      0
      Votes
      1
      Posts
      90
      Views

      No one has replied

    • UNSOLVED xx.ui.qml files and Qt 6 impossible to get it to work?
      QML and Qt Quick • qt quick qt 6 ui.qml ui form • • RemcoMusic  

      9
      0
      Votes
      9
      Posts
      586
      Views

      @kshegunov Thanks for the correct query! I've researched the links you stated and I think my problem is before theirs. That is why I created a new bug report -> https://bugreports.qt.io/browse/QTCREATORBUG-25686 I hope I have made myself clear enough so they will understand the problem.
    • SOLVED Multiple UI windows??
      QML and Qt Quick • qml c++ window multi-screen ui.qml • • texasRanger  

      9
      0
      Votes
      9
      Posts
      409
      Views

      @texasRanger said in Multiple UI windows??: Solved here: https://forum.qt.io/topic/99477/multiwindow-in-qml-proof-of-concept/7 The solution in this post is unnecessarily complicated. In your question about them being blank I don't understand what you are doing //main.qml QtObject { property Window window1: Window { visible: true // ... } } //FirstForm window1 { //UI formating } How are those two related? Why not do this? //main.qml QtObject { property Window window1: Window { visible: true // ... FirstForm { anchors.fill: parent } } }
    • SOLVED ui.qml text object needs to be edited from another .qml file
      QML and Qt Quick • qml qt creator qtquick property alias ui.qml • • texasRanger  

      6
      0
      Votes
      6
      Posts
      412
      Views

      @texasRanger said in ui.qml text object needs to be edited from another .qml file: he ui.qml file it updates in real time how do you show it on the screen ? with qmlscene tool ? if you set textItem.text : "Hello World" inside Display.qml and show it with qmlscene you will see "Hello World". but if you show DisplayForm.ui.qml you will still see "Text"