summaryrefslogtreecommitdiff
path: root/src/MVPtoMVVM.mvp/MvpWindow.xaml
blob: 0e62f7b47f0068b348a5bf3b8ddbcfc6e6f7cb07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<Window x:Class="MVPtoMVVM.mvp.MvpWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Things To Do" Height="350" Width="525">
    <DockPanel LastChildFill="False">
        <ListView Name="todoItemsList" DockPanel.Dock="Top" />
        <DockPanel DockPanel.Dock="Bottom" LastChildFill="False">
            <Button Content="Cancel Changes" Name="cancelButton" DockPanel.Dock="Right"/>
            <Button Content="Add New Item" Name="newItemButton" DockPanel.Dock="Right"/>
        </DockPanel>
    </DockPanel>
</Window>