ApplicationDatabaseTermsPopUp.mxml 743 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:TitleWindow
  3. xmlns:mx="http://www.adobe.com/2006/mxml"
  4. layout="vertical" width="600" height="300"
  5. addedEffect="Fade" removedEffect="Fade"
  6. showCloseButton="true"
  7. title="{resourceManager.getString('labels', 'sharedDatabase')}"
  8. close="closeHandler()">
  9. <mx:Script source="../../../scripts/general/register/applicationDatabaseTermsPopUp.as" />
  10. <mx:VBox width="100%" verticalGap="0" paddingTop="10">
  11. <mx:Text htmlText="{resourceManager.getString('labels', 'databaseTerms')}"/>
  12. <mx:HBox width="100%" horizontalAlign="center">
  13. <mx:Button click="closeHandler()" label="{resourceManager.getString('labels', 'close')}"/>
  14. </mx:HBox>
  15. </mx:VBox>
  16. </mx:TitleWindow>