我有这样的网格布局
<GridLayout class="testMe" dock="left" top="0" width="50%" height="100%" style="background-color:green;clip-path: circle(200% at 100% 100% 0% 0%);margin: 0 1 0 0;">
<Label class="testMe" text = "Left parking" textWrap="true" />
<image src="res://icon" class="testMe" style="vertical-align:bottom;horizontal-align: right;margin-bottom:20;margin-right:20;width:40"/>
</GridLayout>
我正在尝试添加像这样的css伪类
.testMe:highlighted {
background-color:cyan;
}
我没有看到点击的高光。它有用还是我在这里遗漏了什么?