Created
August 17, 2011 16:02
-
-
Save junwatu/1151865 to your computer and use it in GitHub Desktop.
MyBooks main file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" | |
xmlns:custom="comp.ui.*" xmlns:local="*" width="700" height="400"> | |
<mx:Label text="MyBooks" fontSize="16" fontWeight="bold" textAlign="left" width="100%"/> | |
<mx:HDividedBox height="100%" width="100%"> | |
<local:BookList width="40%" height="100%"/> | |
<custom:BookDetails width="60%" height="100%"/> | |
</mx:HDividedBox> | |
</mx:Application> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment