コード例 #1
0
        public void UpdateTodoList(int theRecordNumber, string theTitle, string theText)
        {
            DataSet todoListDataSet = todoModel.GetTodoList();
            DataRow row             = todoListDataSet.Tables[0].Rows[theRecordNumber];

            row["Title"] = theTitle;
            row["Text"]  = theText;

            todoModel.UpdateXMLDoc(todoListDataSet);
        }
コード例 #2
0
ファイル: TodoController.cs プロジェクト: huoyanbing/MyCNC
 public void UpdateTodoList(DataSet newTodoListDataSet)
 {
     todoModel.UpdateXMLDoc(newTodoListDataSet);
 }