private void InProgressCheckedChanged(TaskListDisplayItem taskListDisplayItem)
        {
            // TODO: sync these methods to be the same functionality as ViewTaskDetailsPage
            // I think I meant re: loading progress which is missing here - both ways currently call the task list manager
            bool a = _taskListManager.UpdateTaskProgressState(taskListDisplayItem.Id, taskListDisplayItem.InProgress);

            // Updating task progress sets IsComplete to false, so reflect this on the model
            taskListDisplayItem.IsComplete = false;
        }