facebook twitter hatena line email

Flash/flexカスタムコンポーネント

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

以下のとおり設定するとmxmlをインクルードできる

-main.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:mycomp="mycomp.*" layout="absolute">
  <mycomp:LabelComp />
</mx:Application>

-mycomp/LabelComp.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
  <mx:Label text="text1" />
</mx:Application>

データとしてmxmlをインクルードする場合

<mx:DataGridColumn headerText="選択" width="50" dataField="checkbox" 
  itemRenderer="app.mxml.editer.CheckBoxRenderer"/>