master
 1<UserControl x:Class="MVPtoMVVM.mvp.TodoItemView"
 2             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 3             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 4             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
 5             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
 6             mc:Ignorable="d">
 7    <StackPanel Orientation="Horizontal">
 8        <Image Source="alert.png" Name="dueSoonAlert"/>
 9        <TextBox Name="description" Width="200"/>
10        <DatePicker Name="dueDate" />
11        <Button Content="Save" Name="saveButton"></Button>
12        <Button Content="Del" Name="deleteButton"></Button>
13    </StackPanel>
14</UserControl>