public void SaveTodo(Todo _todo) { try { int last =1; if (listTodo.Count() > 0) { last = listTodo.Max(x => x.Id); } _todo.Id = last + 1; listTodo.Add(_todo); Reminder rem = new Reminder(_todo.Title); rem.Content = _todo.Content; rem.BeginTime = _todo.Deadline; ScheduledActionService.Add(rem); } catch { //MessageBox.Show(e.Message); } }