GeneralMeasureView.mxml 802 B

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