blob: 3662c877d22edff83abae8b041cc877a79d88cdf [file] [log] [blame]
<Composite xmlns="http://www.eclipse.org/xwt/presentation"
xmlns:x="http://www.eclipse.org/xwt"
xmlns:c="clr-namespace:org.eclipse.xwt.tests.wizard"
xmlns:j="clr-namespace:java.lang"
x:Class="org.eclipse.xwt.tests.wizard.AddressView">
<Composite.layout>
<GridLayout numColumns="2" />
</Composite.layout>
<Label text="Street"/>
<Text x:Style="Border" text="{Binding path=street}">
<Text.layoutData>
<GridData grabExcessHorizontalSpace="true"
horizontalAlignment="GridData.FILL" widthHint="100"/>
</Text.layoutData>
</Text>
<Label text="City *"/>
<Text x:Style="Border" text="{Binding path=city,updateSourceTrigger=PropertyChanged,validationRule=c:NameValidator}">
<Text.layoutData>
<GridData grabExcessHorizontalSpace="true"
horizontalAlignment="GridData.FILL" widthHint="100"/>
</Text.layoutData>
</Text>
</Composite>