タブをタブに動的に追加するにはどうすればよいですか?
以下のコードを使用して、tabsコンポーネントに新しいタブを追加しようとしています。 実行時にエラーは報告されませんが、追加のタブは表示されません。tabsとtabs .__ tabsModelの両方を親として使用しようとしましたが、追加のタブは表示されません。 import QtQuick 2.0 import QtQuick.LocalStorage 2.0 import Ubuntu.Components 0.1 MainView { // objectName for functional testing purposes (autopilot-qt5) id: mainView objectName: "mainView" applicationName: "news-feed" width: units.gu(100) height: units.gu(75) Tabs { id: tabs anchors.fill: parent Component.onCompleted: { mainView.initializeDB(); mainView.saveFeed("BBC News","http://feeds.bbci.co.uk/news/rss.xml"); mainView.saveFeed("Jono Bacon","http://www.jonobacon.org/?feed=rss2"); mainView.saveFeed("The Register", "http://www.theregister.co.uk/headlines.atom"); fillTabs(); } …