示例#1
0
文件: Paper.cs 项目: anaimi/codebox
 public void InsertLine(int index, PaperLine line)
 {
     Children.Insert(index, line);
     UpdateNumberPanel();
     UpdateLinesIndices(index);
 }
示例#2
0
 public void RemoveLine(PaperLine line)
 {
     Children.Remove(line);
 }