DemoView.mxml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:VBox
  3. xmlns:mx="http://www.adobe.com/2006/mxml"
  4. label="{resourceManager.getString('labels', 'demo')}"
  5. verticalScrollPolicy="auto" horizontalScrollPolicy="off"
  6. paddingTop="10" paddingLeft="150" paddingRight="10">
  7. <mx:Script source="../../../scripts/general/home/demoView.as" />
  8. <mx:Zoom id="zoomMovieAdd" startDelay="50"/>
  9. <mx:Parallel id="zoomMovieRemove">
  10. <mx:Zoom />
  11. <mx:Fade />
  12. </mx:Parallel>
  13. <mx:HBox height="44%" width="100%">
  14. <mx:Canvas styleName="containerRedCompact" width="95%" height="100%">
  15. <mx:Image source="@Embed('images/general/leftTitle.png')" />
  16. <mx:Label text="{resourceManager.getString( 'labels', 'demo.patient' )}" styleName="titlePanel" paddingLeft="15" hideEffect="Fade" showEffect="Fade" />
  17. <mx:Box buttonMode="true" useHandCursor="true" width="100%" height="100%" verticalAlign="middle" horizontalAlign="center" paddingTop="30" paddingRight="100" paddingLeft="120" paddingBottom="20">
  18. <mx:Image click="zoomImage('1')" source="@Embed('images/general/demo.png')" width="90%" height="90%"/>
  19. </mx:Box>
  20. </mx:Canvas>
  21. <mx:Canvas styleName="containerRedCompact" width="95%" height="100%" buttonMode="true" useHandCursor="true">
  22. <mx:Image source="@Embed('images/general/leftTitle.png')" />
  23. <mx:Label text="{resourceManager.getString( 'labels', 'demo.acquire' )}" styleName="titlePanel" paddingLeft="15" hideEffect="Fade" showEffect="Fade" />
  24. <mx:Box buttonMode="true" useHandCursor="true" width="100%" height="100%" verticalAlign="middle" horizontalAlign="center" paddingTop="30" paddingRight="100" paddingLeft="120" paddingBottom="20">
  25. <mx:Image click="zoomImage('2')" source="@Embed('images/general/demo.png')" width="90%" height="90%"/>
  26. </mx:Box>
  27. </mx:Canvas>
  28. </mx:HBox>
  29. <mx:HBox height="44%" width="100%">
  30. <mx:Canvas styleName="containerRedCompact" width="95%" height="100%" >
  31. <mx:Image source="@Embed('images/general/leftTitle.png')" />
  32. <mx:Label text="{resourceManager.getString( 'labels', 'demo.measures' )}" styleName="titlePanel" paddingLeft="15" hideEffect="Fade" showEffect="Fade" />
  33. <mx:Box buttonMode="true" useHandCursor="true" width="100%" height="100%" verticalAlign="middle" horizontalAlign="center" paddingTop="30" paddingRight="100" paddingLeft="120" paddingBottom="20">
  34. <mx:Image click="zoomImage('3')" source="@Embed('images/general/demo.png')" width="90%" height="90%"/>
  35. </mx:Box>
  36. </mx:Canvas>
  37. <mx:Canvas styleName="containerRedCompact" width="95%" height="100%">
  38. <mx:Image source="@Embed('images/general/leftTitle.png')" />
  39. <mx:Label text="{resourceManager.getString( 'labels', 'demo.report' )}" styleName="titlePanel" paddingLeft="15" hideEffect="Fade" showEffect="Fade" />
  40. <mx:Box buttonMode="true" useHandCursor="true" width="100%" height="100%" verticalAlign="middle" horizontalAlign="center" paddingTop="30" paddingRight="100" paddingLeft="120" paddingBottom="20">
  41. <mx:Image click="zoomImage('4')" source="@Embed('images/general/demo.png')" width="90%" height="90%"/>
  42. </mx:Box>
  43. </mx:Canvas>
  44. </mx:HBox>
  45. </mx:VBox>