Changeset 128 for trunk/buddypub
- Timestamp:
- 04/30/08 18:55:57 (8 months ago)
- Location:
- trunk/buddypub/bpclientflex/src
- Files:
-
- 4 modified
-
assets/css/buddypub_style.css (modified) (6 diffs)
-
index.mxml (modified) (2 diffs)
-
org/cnflex/buddypub/mvc/control/ModelGlueConfiguration.mxml (modified) (1 diff)
-
org/cnflex/share/container/ContentBoxPanel.as (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/buddypub/bpclientflex/src/assets/css/buddypub_style.css
r125 r128 2 2 Panel 3 3 { 4 borderColor: #009DFF; 4 /*borderColor: #009DFF;*/ 5 borderColor: #51AEE8; 5 6 cornerRadius: 6; 6 7 borderAlpha: 1; … … 16 17 /*borderStyle: solid;*/ 17 18 } 19 Button 20 { 21 cornerRadius: 5; 22 fontWeight: normal; 23 fillAlphas: 1.0, 1.0, 1.0, 1.0; 24 themeColor: #FFDE77; 25 color: #51AEE8; 26 textRollOverColor: #51AEE8; 27 textSelectedColor: #51AEE8; 28 } 29 30 Alert 31 { 32 borderColor: #51AEE8; 33 backgroundColor:#51AEE8; 34 borderAlpha: 0.9; 35 backgroundAlpha:0.9; 36 top:10; 37 bottom:10; 38 paddingBottom:10; 39 paddingLeft:20; 40 paddingRight:20; 41 paddingTop:0; 42 fontSize: 14; 43 buttonStyleName: Button; 44 } 18 45 19 46 .panelControlBar … … 21 48 backgroundAlpha: 1; 22 49 barColor: #180C0C; 23 fontSize: 1 5;50 fontSize: 14; 24 51 } 25 52 … … 46 73 fontSize: 12; 47 74 } 75 48 76 LinkButton 49 77 { … … 51 79 textRollOverColor: #009DFF; 52 80 textSelectedColor: #FF6633; 53 color: #009DFF; 54 rollOverColor: #D0DDDD; 81 color: #009DFF; 82 cornerRadius: 0; 83 horizontalGap: 0; 55 84 } 85 /* 56 86 TextInput 57 87 { … … 60 90 fontSize: 14; 61 91 } 92 */ 62 93 ToolTip 63 94 { -
trunk/buddypub/bpclientflex/src/index.mxml
r126 r128 2 2 <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 3 3 xmlns:business="org.cnflex.buddypub.mvc.business.*" 4 xmlns:view="org.cnflex.buddypub.mvc.view.*" 5 xmlns:control="org.cnflex.buddypub.mvc.control.*" 4 xmlns:view="org.cnflex.buddypub.mvc.view.*" 5 xmlns:control="org.cnflex.buddypub.mvc.control.*" 6 6 layout="vertical" xmlns:container="org.cnflex.buddypub.mvc.view.container.*" 7 verticalScrollPolicy="off" horizontalScrollPolicy="off" width="100%" height="100%" 7 verticalScrollPolicy="off" horizontalScrollPolicy="off" width="100%" height="100%" 8 8 paddingTop="0" paddingLeft="0" paddingRight="0" paddingBottom="0"> 9 9 … … 16 16 <![CDATA[ 17 17 import org.cnflex.buddypub.mvc.control.EventHandlers; 18 import com.firemoss.modelglue.event.ModelGlueEvent; 19 /* 20 private function calculate():void{ 21 var number:int = Math.round(Number(numb.text)); 22 var event:ModelGlueEvent = new ModelGlueEvent(EventHandlers.userLogin,{number:number}); 23 event.dispatch(); 24 } 25 */ 18 import com.firemoss.modelglue.event.ModelGlueEvent; 26 19 ]]> 27 20 </mx:Script> 28 <!--29 <mx:Label text="Test"/>30 <mx:Form>31 <mx:FormItem label="Number:">32 <mx:TextInput id="numb" text="0"/>33 </mx:FormItem>34 </mx:Form>35 <mx:Button label="Submit" click="calculate()"/>36 -->37 21 <container:Main width="100%" height="100%"/> 38 22 </mx:Application> -
trunk/buddypub/bpclientflex/src/org/cnflex/buddypub/mvc/control/ModelGlueConfiguration.mxml
r127 r128 25 25 private function systemInit():void{ 26 26 27 Alert.show("SystemInit!");27 //Alert.show("SystemInit!"); 28 28 29 29 } -
trunk/buddypub/bpclientflex/src/org/cnflex/share/container/ContentBoxPanel.as
r126 r128 82 82 minimizeButton.height = 14;//设置高 83 83 minimizeButton.styleName = "minimizeButton";//设置样式 84 minimizeButton.buttonMode = true; 85 minimizeButton.useHandCursor = true; 84 86 85 87 maximizeRestoreButton = new Button();//最大化按钮 … … 87 89 maximizeRestoreButton.height = 14;//设置高 88 90 maximizeRestoreButton.styleName = "maximizeRestoreButton";//设置样式 91 maximizeRestoreButton.buttonMode = true; 92 maximizeRestoreButton.useHandCursor = true; 89 93 90 94 closeButton = new Button();//关闭按钮 … … 92 96 closeButton.height = 14;//设置高 93 97 closeButton.styleName = "closeButton";//设置样式 98 closeButton.buttonMode = true; 99 closeButton.useHandCursor = true; 94 100 95 101 //设置放置按钮容器的样式
