blob: c1dc724e7bbe43065feada1fccea6455532f4dfd [file] [log] [blame]
<Composite xmlns="http://www.eclipse.org/xwt/presentation"
xmlns:x="http://www.eclipse.org/xwt"
xmlns:j="clr-namespace:org.eclipse.xwt.tests.jface.listviewer.collection"
x:Class="org.eclipse.xwt.tests.jface.listviewer.collection.ListViewer"
DataContext="{StaticResource myCompany}">
<Composite.layout>
<GridLayout numColumns="2"/>
</Composite.layout>
<Composite.resources>
<j:Company x:Key="myCompany">
<j:Company.employees>
<j:Employee Name="Thomas"/>
<j:Employee Name="Jin"/>
</j:Company.employees>
</j:Company>
</Composite.resources>
<ListViewer name="ListViewer" input="{Binding Path=employees}" bindingPath="name">
<ListViewer.control.layoutData>
<GridData horizontalAlignment="FILL" verticalAlignment="FILL"
grabExcessHorizontalSpace="true" grabExcessVerticalSpace="true"/>
</ListViewer.control.layoutData>
</ListViewer>
<Button name="Button" text="Add Person" SelectionEvent="addPerson" />
</Composite>