protected void ShowTaskDetails (TaskItem taskItem) { currentTaskItem = taskItem; taskItemDialog = new TaskDialog (taskItem); var title = Foundation.NSBundle.MainBundle.LocalizedString ("Task Details", "Task Details"); context = new LocalizableBindingContext (this, taskItemDialog, title); detailsScreen = new DialogViewController (context.Root, true); ActivateController(detailsScreen); }
protected void ShowTaskDetails(Task task) { currentTask = task; taskDialog = new TaskDialog(task); string title = NSBundle.MainBundle.LocalizedString("Task Details", "Task Details"); context = new LocalizableBindingContext(this, taskDialog, title); detailsScreen = new DialogViewController(context.Root, true); ActivateController(detailsScreen); }