Exemplo n.º 1
0
        public void Initialize()
        {
            myData.Add(new CDataCell("완료", "할일 1번째", "중요", "홍길동"));
            myData.Add(new CDataCell("완료", "할일 2번째", "중요", "홍길동"));
            myData.Add(new CDataCell("완료", "할일 3번째", "중요", "홍길동"));
            CDataCell newdata = new CDataCell("완료", "할일 4번째", "중요", "홍길동");

            myData.Insert(1, newdata);
            DisplayDataCell(myData);
        }
Exemplo n.º 2
0
 public void Update_View_With_Changed_Model(CDataCell dc)
 {
 }
Exemplo n.º 3
0
 public void Remove_Model_From_View(CDataCell dc)
 {
 }
Exemplo n.º 4
0
 public void Add_Model_To_View(CDataCell dc)
 {
 }