Exemplo n.º 1
0
 void Buffer_LineRemoveEvent(object sender, TextBufferEventArgs e)
 {
     updateMaxScrollY();
     RegisterForGraphicUpdate();
     notifyPositionChanged();
     isDirty = true;
 }
Exemplo n.º 2
0
 void Buffer_LineUpadateEvent(object sender, TextBufferEventArgs e)
 {
     RegisterForGraphicUpdate();
     notifyPositionChanged();
     isDirty = true;
 }
Exemplo n.º 3
0
 void Buffer_LineAdditionEvent(object sender, TextBufferEventArgs e)
 {
     updateMaxScrollY();
     RegisterForGraphicUpdate();
     isDirty = true;
 }