blob: ad0cc8eaae1ea7aab86460135e96e6e306fdea29 [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>
<Shell.Resources>
<XmlDataProvider x:Key="myBooks" path="/bookstore">
<x:XData>
<bookstore>
<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
</bookstore>
</x:XData>
</XmlDataProvider>
</Shell.Resources>
<Label text="Name"/>
<Text x:style="BORDER" text="{Binding Source={StaticResource myBooks}, path=//book/title/text()}">
<Text.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Text.layoutData>
</Text>
<Label text="{Binding Source={StaticResource myBooks}, path=//book/title/text()}">
<Label.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Label.layoutData>
</Label>
</Shell>