/ Published in: MXML
Expand |
Embed | Plain Text
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600" xmlns:components="components.*"> <mx:Script> <![CDATA[ import configfiles.SimulationConfigParams; protected var _params:SimulationConfigParams = new SimulationConfigParams(); [Bindable] public function get params():SimulationConfigParams { return _params; } public function set params(value:SimulationConfigParams):void { _params=value; } ]]> </mx:Script> <components:OrganizatonPanel horizontalCenter="0" verticalCenter="0" params="{params}"> </components:OrganizatonPanel> </mx:Application>
You need to login to post a comment.
