Apache Pivot TabPane style
-
Ich verwende Apache Pivot für ein GUI.
Ich habe folgenden TabPane Aufbau schnell hingehauen:<TabPane bxml:id="tabs" styles="{backgroundColor:'#505050', borderColor:'#000000', activeTabColor:'#505050'}"> <BoxPane styles="{horizontalAlignment:'center', verticalAlignment:'center', backgroundColor:'#303030'}"> <TabPane.tabData styles="{backgroundColor:'#303030'}"> <content:ButtonData text="Bell"/> </TabPane.tabData> <Border styles="{padding:0, backgroundColor:'#303030'}"> <bxml:include src="GeneralOptions.bxml"/> </Border> </BoxPane> </TabPane>
Mein Problem besteht nun darin, dass content:ButtonData nicht stilisierbar ist.
Heißt<content:ButtonData text="Bell" styles="{font:{size:16}}"/>
ist zum Beispiel nicht möglich.
die Dokumentation ist leider sehr rar.
Was kann ich tun um die Schrift und Schriftfarbe der Tabs zu ändern?
-
Ich habe rausgefunden, wie man die Schriftfarbe ändert. Mittels "buttonColor".
<TabPane bxml:id="tabs" styles="{backgroundColor:'#505050', borderColor:'#000000', activeTabColor:'#505050', buttonColor:'#FFFFFF'}">
Fehlt noch die Schriftgröße.