<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="#f3f3f3">

	<mx:constraintRows>
		<mx:ConstraintRow id="title" height="30"/>
		<mx:ConstraintRow id="content" height="100%"/>
	</mx:constraintRows>
	<mx:constraintColumns>
		<mx:ConstraintColumn id="list" width="100%"/>
		<mx:ConstraintColumn id="sideBar" width="200"/>
	</mx:constraintColumns>
	
	<!-- title 기준으로 높이를 설정하고 전체를 기준으로 넓이를 세팅 -->
	<mx:HBox top="title:5" left="5" bottom="title:5" right="5" horizontalAlign="center">
		<mx:Label text="Issue Report" fontFamily="Verdana" fontWeight="bold" fontSize="12" />
		<mx:Label text="v1.0" fontFamily="Verdana" />
	</mx:HBox>
	
	<!-- content 기준으로 y 좌표를 설정하고 list 기준으로 넓이를 세팅 -->
	<mx:HBox top="content:0" left="list:5" right="list:5">
		<mx:ComboBox id="cbSearchUser" height="20" width="100" />
	</mx:HBox>
	
	<mx:DataGrid top="content:25" left="list:5" bottom="content:5" right="list:5"/>
	
	<mx:Button label="purpleRinn" top="content:0" right="sideBar:5" height="20" />
	
	<!-- content 기준으로 y 좌표를 설정하고 sideBar 기준으로 넓이를 세팅 -->
	<mx:Panel title="My Task" top="content:25" left="sideBar:5" bottom="content:5" right="sideBar:5">
	</mx:Panel>
	
</mx:Application>
