我们如何在 TSS 中使用分层选择器设置样式?
例如在 index.xml 文件中我有
<TableView id="myTable">
<TableViewRow>
<Label text="Row"></Label>
</TableViewRow>
</TableView>
为此,我想将 Set style 设置为Label
inside#myTable
就像在 CSS 中一样,我们可以做到
#myTable Label{
//style
}
但这在 TSS 中不起作用。
那么有谁知道我们如何使用分层选择器设置样式?