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