示例#1
0
 private void UndoClick(object sender, EventArgs e)
 {
     if (f != null && fit.CanUndo)
     {
         fit.Undo();
         UpdateForm();
     }
 }