<?xml version="1.0"?>
<GUI
xmlns="http://www.numeninest.com/Perl/WGX"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.numeninest.com/Perl/WGX http://www.numeninest.com/Perl/WGX/win32-gui-xmlbuilder.xsd">
	<Window name='W'
		dim='100, 100, 400, 300'
	>
		<WGXSplitter
			dim='0, 0, $self->{W}->ScaleWidth, 150'
			horizontal='0'
			splittersize='4'
			start='200'
		>
			<Item>
				<Label 
					text='Panel 1'
					foreground='exec:[255,255,255]' background='exec:[255,0,0]'
				/>
			</Item>
			<Item>
				<Label 
					text='Panel 2' 
					foreground='exec:[0,0,0]' background='exec:[0,255,0]'
				/>
			</Item>
		</WGXSplitter>
		<WGXSplitter
			dim='0, 150, $self->{W}->ScaleWidth, $self->{W}->ScaleHeight - 150'
			horizontal='1'
			splittersize='4'
			start='75'
		>
			<Item>
				<Label 
					text='Panel 3'
					foreground='exec:[255,255,255]' background='exec:[0,0,255]'
				/>
			</Item>
			<Item>
				<Label 
					text='Panel 4'
					foreground='exec:[0,0,0]' background='exec:[255,255,0]'
				/>
			</Item>
		</WGXSplitter>
	</Window>
</GUI>