main
 1<Window x:Class="presentation.windows.views.AddFamilyMemberDialog"
 2    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 3    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Controls="clr-namespace:Microsoft.Windows.Controls;assembly=WPFToolkit" Title="Add A Family Member" ShowInTaskbar="False" WindowStartupLocation="CenterScreen" Width="400" Height="170">
 4    <DockPanel>
 5        <StackPanel>
 6        <Label FontWeight="Bold">Add A Family Member</Label>
 7        <DockPanel>
 8            <UniformGrid Rows="3">
 9                <Label>first name</Label>
10                <TextBox Text="{Binding Path=first_name, Mode=TwoWay}"></TextBox>
11                <Label>last name</Label>
12                <TextBox Text="{Binding Path=last_name, Mode=TwoWay}"></TextBox>
13                <Label>date of birth</Label>
14                <Controls:DatePicker SelectedDate="{Binding Path=date_of_birth, Mode=TwoWay}"></Controls:DatePicker>
15            </UniformGrid>
16        </DockPanel>
17        <UniformGrid Rows="1" >
18            <Button Command="{Binding Save}" IsDefault="True">_Save</Button>
19            <Button Command="{Binding Cancel}" IsCancel="True">_Cancel</Button>
20        </UniformGrid>
21        </StackPanel>
22    </DockPanel>
23</Window>