Changeset 49 for trunk/earthplayer
- Timestamp:
- 04/07/08 15:56:24 (9 months ago)
- Location:
- trunk/earthplayer/home/src/com/earthplayer/ui/widget
- Files:
-
- 2 modified
-
FunctionWindow.as (modified) (1 diff)
-
SelfConfigureWindow.mxml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/earthplayer/home/src/com/earthplayer/ui/widget/FunctionWindow.as
r2 r49 11 11 super(); 12 12 //this.addEventListener(CloseEvent.CLOSE,closeMe); 13 this.setStyle("roundedBottomCorners",true); 14 this.showCloseButton = true; 13 this.setStyle("roundedBottomCorners",true); 14 this.showCloseButton = true; 15 15 } 16 16 -
trunk/earthplayer/home/src/com/earthplayer/ui/widget/SelfConfigureWindow.mxml
r2 r49 2 2 <FunctionWindow backgroundAlpha="0.5" borderAlpha="0.5" styleName="v1" title="设置个人信息" 3 3 xmlns="com.earthplayer.ui.widget.*" dragEnabled="true" creationComplete="init()" 4 layout="absolute" verticalGap="0" showCloseButton="false" 4 layout="absolute" verticalGap="0" showCloseButton="false" 5 5 xmlns:mx="http://www.adobe.com/2006/mxml"> 6 6 … … 137 137 <mx:NumberValidator id="imValidator" source="{qq_number}" required="false" property="text" listener="{qq_number}" minValue="10000" maxValue="999999999999999" /> 138 138 139 <mx:VBox id="form"> 139 <mx:VBox id="form" width="100%" height="100%" 140 paddingTop="30" paddingBottom="10" paddingLeft="20" paddingRight="20"> 140 141 <mx:HBox> 141 142 <mx:ViewStack id="mediaStack" resizeToContent="true" … … 179 180 </mx:HBox> 180 181 </mx:VBox> 181 <mx:Label text="简介" y="135"/> 182 <mx:TextArea id="user_intro" text="{LocalInfo.getInstance().user.userIntro}" width="180" height="50" y="155" maxChars="26" backgroundAlpha="0.5" backgroundColor="#a7faf3" borderStyle="none"/> 182 <mx:Label text="简介" x="20" y="135"/> 183 <mx:TextArea id="user_intro" text="{LocalInfo.getInstance().user.userIntro}" width="180" height="50" 184 x="20" y="165" maxChars="26" backgroundAlpha="0.5" backgroundColor="#a7faf3" borderStyle="none"/> 183 185 </FunctionWindow>
