blob: 0fae11cb7ff7221334df30a01ac8d4bf8a324f43 [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.dataprovider.custom"
Size="400, 300">
<Shell.layout>
<GridLayout numColumns="3"/>
</Shell.layout>
<Shell.Resources>
<y:CustomDataProvider x:Key="myBook" ObjectType="{x:Type y:DynamicObject}"/>
</Shell.Resources>
<Label text="Title: "/>
<Text x:style="BORDER" text="{Binding Source={StaticResource myBook}, Path=title}">
<Text.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Text.layoutData>
</Text>
<Label text="{Binding Source={StaticResource myBook}, Path=title}">
<Label.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Label.layoutData>
</Label>
</Shell>