トップページ >  Flex >  ButtonBar
初版2009/09/28: 最終更新日2009/09/28
ButtonBar
目次
ButtonBarとは
ButtonBarのソース
ButtonBarサンプル
ButtonBarとは
ボタンを並べられるナビゲーションです。 単一アクションを起こす際のトリガーなどで使用します。
ButtonBarのソース
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
	<mx:ButtonBar borderStyle="solid" horizontalGap="5">
		<mx:dataProvider>
			<mx:String>ボタン1</mx:String>
			<mx:String>ボタン2</mx:String>
			<mx:String>ボタン3</mx:String>
			<mx:String>ボタン4</mx:String>
		</mx:dataProvider>
	</mx:ButtonBar>
</mx:Application>
ButtonBarサンプル