<?xml version="1.0" encoding="UTF-8"?>

<Window title="Testing" maximized="true"
        xmlns:wtkx="http://pivot.apache.org/wtkx"
        xmlns:content="org.apache.pivot.wtk.content"
        xmlns="org.apache.pivot.wtk">
    <content>        
        <TablePane wtkx:id="detailsTab">
            <columns>
                <TablePane.Column width="1*"/>
            </columns>
            <rows>
                <TablePane.Row height="1*">
                    <TablePane>
                        <styles horizontalSpacing="4"/>
                        <columns>
                            <TablePane.Column width="-1"/>
                            <TablePane.Column width="1*"/>
                        </columns>
                        <rows>
                            <TablePane.Row height="1*">
                                <BoxPane orientation="vertical">
                                    <styles fill="true"/>
                                    <Border title="Test List" minimumPreferredWidth="100">
                                        <content>
                                            <ScrollPane>
                                                <view>
                                                    <ListView listData="['Test1', 'Test2', 'Test3', 'Test4', 'Test5',
                                                                         'Test6', 'Test7', 'Test8', 'Test9', 'Test10']"/>
                                                </view>
                                            </ScrollPane>
                                        </content>
                                    </Border>
                                </BoxPane>                                
                            </TablePane.Row>
                        </rows>
                    </TablePane>
                </TablePane.Row>
            </rows>
        </TablePane>
    </content>
</Window>
