0

以下代码有什么问题,我将进度条视为仅加载。

  <?xml version="1.0" encoding="utf-8"?>
 <!-- http://blog.flexexamples.com/2009/02/01/setting-the-bar-color-on-the-progressbar-control-in-flex/ -->
 <mx:Application name="ProgressBar_barColor_test"
    xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="vertical"
    verticalAlign="middle"
    backgroundColor="white">

<mx:Script>
    <![CDATA[
        import mx.events.ColorPickerEvent;

        private function colorPicker_change(evt:ColorPickerEvent):void {
            progressBar.setStyle("barColor", evt.color);
        }
    ]]>
</mx:Script>

<mx:ApplicationControlBar dock="true">
    <mx:Form styleName="plain">
        <mx:FormItem label="barColor:">
            <mx:ColorPicker id="colorPicker"
                    selectedColor="red"
                    change="colorPicker_change(event);" />
        </mx:FormItem>
    </mx:Form>
</mx:ApplicationControlBar>

<mx:ProgressBar id="progressBar"
        indeterminate="true"
        labelPlacement="center"
        height="100" />

 </mx:Application>
4

1 回答 1

1

通过“加载”,我假设您的意思是进度条没有显示任何特定的进度。这是因为您将进度条设置为不确定,这意味着它不会显示进度,但只会以动画形式通知用户正在发生进度,但没有任何特定数量。

于 2011-01-05T19:12:16.750 回答