示例#1
0
 public AddEntry()
 {
     InitializeComponent();
     manager          = TodoItemManager.DefaultManager;
     myEditor.Text    = "What did you think about your experience?";          //initialize the Editor.Text and TextColor on the XAML file or on the constructor on the code behind with the PlaceHolder or whatever you want.
     filepath         = "";
     saveBtn.Clicked += Save;
     backBtn.Clicked += Back;
 }
 public TodoItemController()
 {
     manager      = TodoItemManager.DefaultManager;
     display_list = new ObservableCollection <TodoItem>();
 }