阅读:8690次
评论:0条
更新时间:2011-06-01
以下是flex颜色选择器的用法:
<?xml version="1.0"?> <!-- Simple example to demonstrate the ColorPicker control. --> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Panel title="ColorPicker Control Example" height="75%" width="75%" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10"> <mx:Label width="100%" color="blue" text="选择VBox containe的背景色." fontSize="12"/> <mx:ColorPicker id="cp" showTextField="true" selectedColor="0xFFFFFF"/> <mx:VBox width="100%" height="100%" backgroundColor="{cp.selectedColor}" borderStyle="solid"/> <mx:Label color="blue" text="selectedColor: 0x{cp.selectedColor.toString(16)}"/> </mx:Panel> </mx:Application>
评论 共 0 条 请登录后发表评论