private void ViewAllContacts_Executed(object sender, ExecutedRoutedEventArgs e)
 {
     var viewAllContactDialog = new ViewAllContacts();
     viewAllContactDialog.SetParent(StartGrid);
 }
 private void ViewAllContactLink_Click(object sender, MouseButtonEventArgs e)
 {
     var viewAllContactsDialog = new ViewAllContacts();
     viewAllContactsDialog.SetParent(StartGrid);
 }