blob: 3ab1cfa2df943971b3746d3684636aaac024eb2b [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.emf.test.books"
Size="400, 300">
<Shell.layout>
<GridLayout numColumns="3"/>
</Shell.layout>
<Shell.Resources>
<EMFDataProvider x:Key="myBooks" objectInstance="{Binding}">
</EMFDataProvider>
</Shell.Resources>
<Label text="Name:"/>
<Text name="titleText" x:style="BORDER" text="{Binding Source={StaticResource myBooks}, Path=title.text}">
<Text.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Text.layoutData>
</Text>
<Text name="authorText" x:style="BORDER" text="{Binding Source={StaticResource myBooks}, Path=author}">
<Text.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Text.layoutData>
</Text>
<Label text="Copy:"/>
<Text x:style="BORDER" text="{Binding Source={StaticResource myBooks}, Path=title.text}">
<Text.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Text.layoutData>
</Text>
<Text x:style="BORDER" text="{Binding Source={StaticResource myBooks}, Path=author}">
<Text.layoutData>
<GridData horizontalAlignment="FILL"
grabExcessHorizontalSpace="true"/>
</Text.layoutData>
</Text>
</Shell>