public static bool?GetDialogResult(ChildWindow childWindow)
 {
     return(childWindow.GetValue(DialogResultProperty) as bool?);
 }
Ejemplo n.º 2
0
 public static bool?GetDialogResult(ChildWindow target)
 {
     return((bool?)target.GetValue(DialogResultProperty));
 }