Example #1
0
        private void EditSprintCommandExecute()
        {
            AddSprintVM dataContext = new AddSprintVM(changeCanAddSprintToTrue, logedUser, SelectedProject);
            AddSprint   dialog      = new AddSprint();

            dialog.DataContext = dataContext;
            dialog.Show();
        }
Example #2
0
        private void AddSprintCommandExecuted()
        {
            CanAddSprint = false;
            AddSprintVM dataContext = new AddSprintVM(changeCanAddSprintToTrue, logedUser);
            AddSprint   dialog      = new AddSprint();

            dialog.DataContext = dataContext;
            dialog.Show();
        }