首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > flex >

flex LinkButton应用

2012-10-08 
flex LinkButton使用?xml version1.0 encodingutf-8?mx:Application?nameLinkButton_labelPlac

flex LinkButton使用

  1. <?xml version="1.0" encoding="utf-8"?><mx:Application?name="LinkButton_labelPlacement_test"? ? ? ? xmlns:mx="http://www.adobe.com/2006/mxml"? ? ? ? layout="vertical"? ? ? ? verticalAlign="middle"? ? ? ? backgroundColor="white">?? ? <mx:Script>? ? ? ? <![CDATA[? ? ? ? ? ? import mx.controls.ButtonLabelPlacement;? ? ? ? ]]>? ? </mx:Script>?? ? <mx:Array?id="arr">? ? ? ? <mx:String>{ButtonLabelPlacement.LEFT}</mx:String>? ? ? ? <mx:String>{ButtonLabelPlacement.RIGHT}</mx:String>? ? ? ? <mx:String>{ButtonLabelPlacement.TOP}</mx:String>? ? ? ? <mx:String>{ButtonLabelPlacement.BOTTOM}</mx:String>? ? </mx:Array>?? ? <mx:ApplicationControlBar?dock="true">? ? ? ? <mx:Form?styleName="plain">? ? ? ? ? ? <mx:FormItem?label="labelPlacement:">? ? ? ? ? ? ? ? <mx:ComboBox?id="comboBox"? ? ? ? ? ? ? ? ? ? ? ? dataProvider="{arr}"? ? ? ? ? ? ? ? ? ? ? ? selectedIndex="1"?/>? ? ? ? ? ? </mx:FormItem>? ? ? ? </mx:Form>? ? </mx:ApplicationControlBar>?? ? <mx:LinkButton?id="linkButton"? ? ? ? ? ? label="LinkButton"? ? ? ? ? ? labelPlacement="{comboBox.selectedItem}"? ? ? ? ? ? icon="@Embed('assets/LinkButton.png')"?/>?</mx:Application>

热点排行