<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white" viewSourceURL="srcview/index.html">
<mx:Style>
.myHeaderStyleName {
color: red;
fontWeight: normal;
}
.myWeekDayStyleName {
color: haloOrange;
fontWeight: normal;
}
</mx:Style>
<mx:HBox id="box">
<mx:VBox>
<mx:Label text="fontWeight = bold" />
<mx:DateChooser fontWeight="bold"
showToday="false" />
</mx:VBox>
<mx:VBox>
<mx:Label text="fontWeight = normal" />
<mx:DateChooser fontWeight="normal"
showToday="false" />
</mx:VBox>
<mx:VBox>
<mx:Label text="custom styles" />
<mx:DateChooser color="haloGreen"
showToday="false"
headerStyleName="myHeaderStyleName"
weekDayStyleName="myWeekDayStyleName" />
</mx:VBox>
</mx:HBox>
</mx:Application>