当前位置:   article > 正文

【qml】Tab的用法_qml tab

qml tab
  • 要引用Tab页里的子元素,必须要使用如下形式: tab页ID.item.itemInTab。
					tab1.item.txt1.text = "xxxx";
  • 1
  • TabView使用原则和其它元素相同,如果在TabView的父元素中声明TabView的子元素的别名,则引用该子元素时可以跳过TabView直接引用。如下面代码中的tabl可以这样引用:item1.tabl。
Item{
	id: item1
    property alias tab1: tab1
    TabView{
        id: tabview1
        Tab{
            id: tab1
            Page1{
            	...
            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 无法给Tab的子元素声明别名。以下代码编译报错:Invalid alias reference. Unable to find id ‘xxx’
        Tab{
            property alias xxx: xxx
            active: true
            Com1{
                id: xxx
            }
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号