我有這個選項卡,我只想在右上角和左上角四捨五入。但它最終四捨五入。角半徑只適用於特定的角落
我做了什麼:
<mx:TabNavigator id="myTabNav" x="58" y="61" width="584" height="200" creationComplete="setColors(event)" styleName="myTabStyle">
<pages:One label="ThisOne" id="one" name="One"/>
<pages:Two label="Twoooooooooooh" id="two" width="584" name="two" />
<pages:Three label="Threeeeeeeeh" id="three" width="583" name="three" />
</mx:TabNavigator>
和
我pageStyles.css文件是:
.myTabStyle {
tabStyleName: "myTabs";
corner-radius:15;
}
.myTabs {
backgroundColor: #FF0080;
corner-radius:10;
focusRoundedCorners: "tl tr";
skin:ClassReference('mx.skins.spark.ButtonSkin');
chromeColor: #FF0080; /* this is the tab widget itself, not the content */
border-style:outset;
}
正如你可以看到我有 「focusRoundedCorners」 指向右上方和左上角,但沒有運氣。我得到的是:
我在做什麼錯傢伙?
在此先感謝。