Example #1
0
        public ConfirmDialog()
        {
            InitializeComponent();

            WindowStartupLocation = WindowStartupLocation.CenterScreen;
            DialogContent         = new ConfirmDialogView()
            {
                DataContext = this
            };
        }
Example #2
0
 public override void PerformOperation()
 {
     try
     {
         _dialogView = new ConfirmDialogView(ViewModel);
         _dialogView.ShowDialog();
     }
     finally
     {
         _dialogView = null;
     }
 }