现在的位置: 首页 > 综合 > 正文

FLEX例子之进程条(ProgressBar)

2012年12月03日 ⁄ 综合 ⁄ 共 1246字 ⁄ 字号 评论关闭

转载请保持文章完整性!
本文链接地址:http://blog.desizen.com/4lone/568.html
主页:joel's blog

这个例子进行的是Tourdeflex:UI Controls:Other Controls:ProgressBar
简介:
The ProgressBar control provides a visual representation of the progress of a task over time.
例子:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="top"
    horizontalAlign="center" backgroundGradientColors="[0x000000,0x323232]" paddingTop="0" viewSourceURL="srcview/index.html">
 
    <mx:Script>
        <![CDATA[
 
          private var j:uint=10;
 
          // Event handler function to set the value of the 
          // ProgressBar control.
          private function runit():void
          {
              if(j<=100)
              {
                 bar.setProgress(j,100);
                 bar.label= "CurrentProgress" + " " + j + "%";
                 j+=10;
              }
              if(j>100)
              {
                 j=0;
              }
          }
        ]]>    
    </mx:Script>
 
    <mx:Panel title="ProgressBar Control" layout="vertical" color="0xffffff" borderAlpha="0.15"
         paddingTop="10" paddingRight="10" paddingBottom="10" paddingLeft="10" horizontalAlign="center">
 
         <mx:Label width="100%" color="0x323232"
            text="Click the button to increment the progress bar." />
        <mx:Button id="Speed" label="Run" click="runit();" color="0x323232"/>
 
        <mx:ProgressBar id="bar" labelPlacement="bottom" themeColor="#EE1122" minimum="0" visible="true" maximum="100"
             color="0x323232"    label="CurrentProgress 0%" direction="right" mode="manual" width="100%"/>
 
    </mx:Panel>
</mx:Application>

抱歉!评论已关闭.