<?xml version="1.0" encoding="utf-8" ?>
<!-- Simple dialog box example -->
<?Mapping XmlNamespace="wf" ClrNamespace="System.Windows.Forms" Assembly="System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" ?>
<?Mapping XmlNamespace="vf" ClrNamespace="Regulus.VersaForms.Controls" Assembly="VersaForms, Version=1.0.99.6" ?>
<wf:Panel xmlns:wf="wf" xmlns:vf="vf" Dock="Fill">
	<vf:FlowGridPanel ID="ButtonPanel" BackColor="White" Dock="Bottom" VertExtension="ShrinkBoundary" LeftMargin="30" HorizSpacing="30" RightMargin="30">
		<vf:Button FlowGridPanel.MinSize="90,25" BackColor="LightGray" FlowGridPanel.Expandability="Horizontal">OK</vf:Button>
		<vf:Button FlowGridPanel.MinSize="90,25" BackColor="LightGray" FlowGridPanel.Expandability="Horizontal">Cancel</vf:Button>
	</vf:FlowGridPanel>
	<vf:FlowGridPanel Dock="Fill" BackColor="LightGray" AutoScroll="true">
		<vf:FixedGridPanel GridCellSize="2,1" BackColor="PeachPuff">
			<wf:Label Text="Account Name"/>
			<wf:TextBox FixedGridPanel.MinWidth="50"/>
		</vf:FixedGridPanel>
		<vf:FixedGridPanel GridCellSize="2,1" BackColor="White">
			<wf:Label Text="Account Number"/>
			<wf:TextBox FixedGridPanel.MinWidth="50"/>
		</vf:FixedGridPanel>
		<vf:FixedGridPanel GridCellSize="2,1" BackColor="PeachPuff">
			<wf:Label Text="Credit Limit"/>
			<wf:TextBox FixedGridPanel.MinWidth="50"/>
		</vf:FixedGridPanel>
		<vf:FixedGridPanel GridCellSize="2,1" BackColor="White">
			<wf:Label Text="Paid"/>
			<wf:CheckBox Text=""/>
		</vf:FixedGridPanel>
	</vf:FlowGridPanel>
</wf:Panel>