Flex支持使用CSS語法和樣式以與CSS到HTML組件相同的方式將樣式應(yīng)用于其UI控件。
您可以參考應(yīng)用程序的類路徑中提供的樣式表。 例如,將Style.css文件與HelloWorld.mxml文件拷貝到com / tutorialspoint / client文件夾。
/* CSS file */ @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; ... .container { cornerRadius :10; horizontalCenter :0; borderColor: #777777; verticalCenter:0; backgroundColor: #efefef; }
然后css文件可以通過下面的代碼片段引用
<fx:Style source="/com/tutorialspoint/client/Style.css"/>
使用styleName屬性將樣式指定給UI組件
<s:BorderContainer width="500" height="500" id="mainContainer" styleName="container"> ... </s:BorderContainer>
您可以使用< fx:Style>在UI容器組件中定義樣式。 標(biāo)簽
<fx:Style> @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; /* class level selector */ .errorLabel { color: red; } </fx:Style>
使用styleName屬性將樣式指定給UI組件。
<s:Label id="errorMsg" text="This is an error message" styleName="errorLabel"/>
使用id選擇器的樣式UI組件。
<fx:Style> /* id level selector */ #msgLabel { color: gray; } </fx:Style>
<s:Label id="msgLabel" text="This is a normal message" />
在一個樣式中樣式一種類型的UI組件。
<fx:Style> /* style applied on all buttons */ s|Button { fontSize: 15; color: #9933FF; } </fx:Style>
<s:Button label="Click Me!" id="btnClickMe" click="btnClickMe_clickHandler(event)" />
讓我們按照以下步驟通過創(chuàng)建測試應(yīng)用程序來檢查Flex應(yīng)用程序的css樣式:
步 | 描述 |
---|---|
1 | 在 Flex - 創(chuàng)建應(yīng)用程序章節(jié)中所述,在包 com.tutorialspoint.client 下創(chuàng)建名為 HelloWorld 的項目。 |
2 | 修改 Style.css , HelloWorld.mxml ,如下所述。 保持文件的其余部分不變。 |
3 | 編譯并運行應(yīng)用程序,以確保業(yè)務(wù)邏輯按照要求工作。 |
以下是修改的css文件 src / com.tutorialspoint / Style.css 的內(nèi)容。
/* CSS file */ @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; .heading { fontFamily: Arial, Helvetica, sans-serif; fontSize: 17px; color: #9b1204; textDecoration:none; fontWeight:normal; } .button { fontWeight: bold; } .container { cornerRadius :10; horizontalCenter :0; borderColor: #777777; verticalCenter:0; backgroundColor: #efefef; }
以下是修改后的mxml文件 src / com.tutorialspoint / HelloWorld.mxml 的內(nèi)容。
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%" minWidth="500" minHeight="500" initialize="application_initializeHandler(event)"> <!--Add reference to style sheet --> <fx:Style source="/com/tutorialspoint/client/Style.css"/> <!--Using styles within mxml file --> <fx:Style> @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; /* class level selector */ .errorLabel { color: red; } /* id level selector */ #msgLabel { color: gray; } /* style applied on all buttons */ s|Button { fontSize: 15; color: #9933FF; } </fx:Style> <fx:Script> <![CDATA[ import mx.controls.Alert; import mx.events.FlexEvent; protected function btnClickMe_clickHandler(event:MouseEvent) :void { Alert.show("Hello World!"); } protected function application_initializeHandler(event:FlexEvent) :void { lblHeader.text = "CSS Demonstrating Application"; } ]]> </fx:Script> <s:BorderContainer width="560" height="500" id="mainContainer" styleName="container"> <s:VGroup width="100%" height="100%" gap="50" horizontalAlign="center" verticalAlign="middle"> <s:Label width="100%" id="lblHeader" fontSize="40" color="0x777777" styleName="heading"/> <s:Button label="Click Me!" id="btnClickMe" click="btnClickMe_clickHandler(event)" /> <s:Label id="errorMsg" text="This is an error message" styleName="errorLabel" /> <s:Label id="msgLabel" text="This is a normal message" /> </s:VGroup> </s:BorderContainer> </s:Application>
準(zhǔn)備好所有更改后,讓我們以正常模式編譯和運行應(yīng)用程序,就像在 Flex - 創(chuàng)建應(yīng)用程序中一樣 章節(jié)。
如果一切順利,您的應(yīng)用程序,這將產(chǎn)生以下結(jié)果:[在線試用]
更多建議: