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

flex进度条

<?xml version="1.0" encoding="utf-8"?>
<!-- Simple example to demonstrate the Halo ProgressBar control. -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
			   xmlns:s="library://ns.adobe.com/flex/spark"
			   xmlns:mx="library://ns.adobe.com/flex/mx">
	
	<fx:Script>
		<![CDATA[
			private var j:uint = 0;
			
			// Event handler function to set the value of the 
			// Halo ProgressBar control.
			private function runit():void
			{
				if (j < 100) {
					j += 10;
				} else if (j >= 100) {
					j = 0;
				}
				bar.setProgress(40,100);
				bar.label = "Current Progress: " + j + "%";
			}
		]]>    
	</fx:Script>
	
	<s:Panel title="Halo ProgressBar Control Example"
			 width="75%" height="75%"  
			 horizontalCenter="0" verticalCenter="0">
		<s:VGroup left="10" right="10" top="10" bottom="10">
			<s:Label width="100%" color="blue"
					 text="Click the button to increment the progress bar." />
			<s:Button id="Speed" label="Run" click="runit();"/>
			
			<mx:ProgressBar id="bar" labelPlacement="bottom" chromeColor="red"
							minimum="0" visible="true" maximum="100" label="CurrentProgress 0%" 
							direction="right" mode="manual" width="100%"/>
		</s:VGroup>
	</s:Panel>
	
</s:Application>

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

相关推荐