Example #1
0
        private bool ShowLicenseAgreement()
        {
            LicenseWindow window = new LicenseWindow(owner, new LicenseWindowViewModel());
            bool?         result = window.ShowDialog();

            return(result ?? false);
        }
 private bool ShowLicenseAgreement()
 {
     LicenseWindow window = new LicenseWindow(owner, new LicenseWindowViewModel());
       bool? result = window.ShowDialog();
       return result ?? false;
 }