Apache Flexのコンポーネントの作り方
はじめに
Apache Flexで独自のコンポーネント(カスタムコンポーネント)を作成します。
例として、「Hello XXX」と表示するだけのコンポーネントを作成します。
また、作成したコンポーネントを利用する方法を書きます。
コンポーネントの作成
HelloLabel.mxml
<?xml version="1.0" encoding="utf-8"?>
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Script>
<![CDATA[
[Bindable]
public var yourName:String;
]]>
</fx:Script>
<s:Label text="Hello {yourName}" />
</s:Group>
<?xml version="1.0" encoding="utf-8"?>
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Script>
<![CDATA[
[Bindable]
public var yourName:String;
]]>
</fx:Script>
<s:Label text="Hello {yourName}" />
</s:Group>
「Hello XXX」と表示するためのコンポーネントを作成します。
mxmlのファイル名の「HelloLabel」の部分がコンポーネントの名前になります。
yourNameに指定された値によって、表示が変わるようにしています。
作成したコンポーネントの利用方法
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:c="*"
width="400" height="300">
<fx:Style>
* {
font-family: "Meiryo";
}
</fx:Style>
<!-- 作成したコンポーネント -->
<c:HelloLabel left="10" top="10" yourName="World"/>
</s:WindowedApplication>
コンポーネントのmxmlファイルが同じフォルダーにある場合、s:WindowedApplicationタグでxmlns:c="*"
のように指定します。
(もし、componentsフォルダーを作って、そこにコンポーネントのmxmlファイルを格納した場合は、xmlns:c="components.*"
のように指定します)
利用したい箇所で、c:HelloLabelタグを記載することで、作成したコンポーネントを利用できます。
今回、xmlns:cにしていますが、「c」の部分は、任意の文字列を指定できます。
Author And Source
この問題について(Apache Flexのコンポーネントの作り方), 我々は、より多くの情報をここで見つけました https://qiita.com/lune1122/items/a1f56b547b9ac57fa585著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .