Flex中通过设置textAlign和headerStyleName样式设置DateChooser控件头部年月文本对齐方式的例子

接下来的例子演示了Flex中通过设置textAlign和headerStyleName样式,设置DateChooser控件头部年月文本对齐方式。
让我们先来看一下Demo(可以右键View Source或 点击这里察看源代码
 
下面是完整代码(或 点击这里查看):
Download: main.mxml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
  3.         layout="vertical"
  4.         verticalAlign="middle"
  5.         backgroundColor="white">
  6.     <mx:Script>
  7.         <![CDATA[
  8.             import mx.events.ListEvent;
  9.             private function comboBox_change(evt:ListEvent):void {
  10.                 var cssObj:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".dateChooserHeaderStyles");
  11.                 cssObj.setStyle("textAlign", comboBox.selectedItem);
  12.             }
  13.         ]]>
  14.     </mx:Script>
  15.     <mx:Style>
  16.         .dateChooserHeaderStyles {
  17.             fontWeight: bold;
  18.             textAlign: left;
  19.         }
  20.     </mx:Style>
  21.     <mx:ApplicationControlBar dock="true">
  22.         <mx:Form styleName="plain">
  23.             <mx:FormItem label="textAlign:">
  24.                 <mx:ComboBox id="comboBox"
  25.                         dataProvider="[left,center,right]"
  26.                         change="comboBox_change(event);" />
  27.             </mx:FormItem>
  28.         </mx:Form>
  29.     </mx:ApplicationControlBar>
  30.     <mx:DateChooser id="dateChooser"
  31.             headerStyleName="dateChooserHeaderStyles" />
  32. </mx:Application>

你可能感兴趣的:(职场,休闲)