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

<Window title="Franchisee Administration" 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="mainLayout">
            <styles padding="4"                    
                    horizontalSpacing="4"/>
            <columns>
                <TablePane.Column width="-1"/>
                <TablePane.Column width="1*"/>
            </columns>
            <rows>
                <TablePane.Row height="1*">
                    <BoxPane orientation="vertical">
                        <styles spacing="8" fill="true"/>
                        <Label text="Logo"/>

                        <wtkx:define><Button.Group wtkx:id="sectionGroup"/></wtkx:define>
                        <PushButton toggleButton="true" group="$sectionGroup" styles="{preferredAspectRatio:1.2}">
                            <buttonData>
                                <content:ButtonData text="Staff"/>
                            </buttonData>
                        </PushButton>
                        <PushButton toggleButton="true" group="$sectionGroup" styles="{preferredAspectRatio:1.2}">
                            <buttonData>
                                <content:ButtonData text="Products"/>
                            </buttonData>
                        </PushButton>
                        <PushButton toggleButton="true" group="$sectionGroup" styles="{preferredAspectRatio:1.2}">
                            <buttonData>
                                <content:ButtonData text="Reports"/>
                            </buttonData>
                        </PushButton>

                    </BoxPane>
                    <Border/>
                </TablePane.Row>
            </rows>
        </TablePane>
    </content>
</Window>
