微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

flex linkbutton使用

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
	<mx:Script>
		<![CDATA[
			import mx.events.MenuEvent;
			import mx.controls.Alert;

			//处理所有linkbar的点击事件
			private function show(str:String):void
			{
				switch (str)
				{
					case "学生管理":
					Alert.show("学生管理");
						break;
					case "课程管理":
						Alert.show("课程管理");
						break;
					case "成绩管理":
						Alert.show("成绩管理");
						break;
				}
			}

		]]>
	</mx:Script>
	<mx:VBox x="0"
			 y="0"
			 width="100%"
			 height="100%"
			 verticalGap="0">
		<mx:HBox width="100%"
				 height="50"
				 id="title_Box">
			<mx:Label text="学生管理"
					  fontSize="30"/>
		</mx:HBox>
		<mx:HRule width="100%"
				  height="1"/>
		<mx:HBox width="100%"
				 height="30"
				 id="meun_Box">
			<mx:VRule height="100%"
					  width="1"/>
			<mx:LinkBar itemClick="show(String(event.label))"
						width="100%"
						fontSize="15">
				<mx:dataProvider>
					<mx:String>学生管理</mx:String>
					<mx:String>课程管理</mx:String>
					<mx:String>成绩管理</mx:String>
				</mx:dataProvider>
			</mx:LinkBar>
			<mx:VRule height="100%"
					  width="1"/>
		</mx:HBox>
		<mx:HRule width="100%"
				  height="1"/>
	</mx:VBox>
</mx:Application>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐