blob: d06937b6a82de6736cb180777e0dc53adf9a1020 [file] [log] [blame]
<Shell xmlns="http://www.eclipse.org/xwt/presentation"
xmlns:x="http://www.eclipse.org/xwt"
xmlns:y="clr-namespace:org.eclipse.xwt.tests.databinding"
Size="400, 300">
<Shell.layout>
<GridLayout numColumns="3"/>
</Shell.layout>
<Label text="Name"/>
<Text x:style="BORDER" text="{Binding path=//book/title/text()}">
<Text.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Text.layoutData>
</Text>
<Label text="{Binding path=//book/title/text()}">
<Label.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Label.layoutData>
</Label>
</Shell>