Exemplo n.º 1
0
 // For choosing contacts when exceeding maximum
 private void ShowContactListForChoosing(DownloadControllerAndData controllerAndData)
 {
     Window_ChooseContacts frm = new Window_ChooseContacts(this, controllerAndData);
     frm.ShowDialog();
 }
Exemplo n.º 2
0
 // For choosing contacts when exceeding maximum
 private void ShowContactListForChoosing(DownloadControllerAndData controllerAndData)
 {
     Window_ChooseContacts frm = new Window_ChooseContacts(this, controllerAndData);
     frm.Owner = Application.Current.MainWindow;
     frm.WindowStartupLocation = WindowStartupLocation.CenterOwner;
     frm.ShowDialog();
 }