[]
Reapplies the most recently undone operation from the redo stack.
public void Redo()
This method reapplies the last action that was undone, effectively "redoing" the most recent change that was reversed. After the operation is redone, it is moved back to the undo stack, allowing it to be undone again if necessary. The Changed event is raised to notify subscribers that the state of the undo/redo history has changed.
private void RedoButton_Click(object sender, EventArgs args)
{
_designer.UndoManager.Redo();
}