| 12345678910111213141516 |
- <?xml version="1.0" encoding="utf-8"?>
- <mx:HBox
- xmlns:mx="http://www.adobe.com/2006/mxml"
- xmlns:measure="com.imt.intimamedia.views.physician.measure.*"
- horizontalAlign="center" verticalAlign="top"
- verticalScrollPolicy="on" horizontalScrollPolicy="off"
- width="100%" height="100%" show="showView()" hide="exitView()">
-
- <mx:Script source="../../../scripts/physician/measure/generalMeasureView.as" />
-
- <mx:ViewStack id="changeSector" height="100%" width="100%" creationPolicy="all">
- <measure:MeasureView id="measures" label="{resourceManager.getString('labels', 'physicianMeasure')}" width="100%" height="100%" />
- <measure:ResultArrayView id="results" label="{resourceManager.getString('labels', 'physicianMeasure')}" width="100%" height="100%" />
- </mx:ViewStack>
-
- </mx:HBox>
|