I am programatically adding text in a custom RichTextBox using a KeyPress event:

SelectedText = e.KeyChar.ToString(); 

The problem is that inserting text in such a way doesn't trigger the CanUndo flag.

As such, when I try to Undo / Redo text (by calling the Undo() and Redo() methods of the textbox), nothing happens.

I tried programatically evoking the KeyUp() event from within a TextChanged() event, but that still didn't flag CanUndo to true.

How can I undo text that I insert without having to create lists for Undo and Redo operations ?

Thanks

link|improve this question

feedback

2 Answers

It's just an idea but what if you set the caret position to where you would insert your text and instead of modifying the Text property, just send the keys?

SendKeys.Send("The keys I want to send");

There are bound to be quirks but as I said, it's just an idea.

link|improve this answer
Thanks, but that still didn't trigger the CanUndo flag for some reason. – Hussein Khalil Mar 24 '11 at 16:02
Bummer, was worth the shot right :-) – Peter Mar 25 '11 at 7:07
feedback
up vote 1 down vote accepted

I finally decided to create my own undo-redo system using stacks.

Here's a quick overview of how I did it :

private const int InitialStackSize = 500;    
private Stack<String> undoStack = new Stack<String>(InitialStackSize);
private Stack<String> redoStack = new Stack<String>(InitialStackSize); 

private void YourKeyPressEventHandler(...)
{
        // The user pressed on CTRL - Z, execute an "Undo"
        if (e.KeyChar == 26)
        {
            // Save the cursor's position
            int selectionStartBackup = SelectionStart;

            redoStack.Push(Text);
            Text = undoStack.Pop();

            // Restore the cursor's position
            SelectionStart = selectionStartBackup;
        }
        // The user pressed on CTRL - Y, execute a "Redo"
        if (e.KeyChar == 25)
        {
            if (redoStack.Count <= 0)
                return;

            // Save the cursor's position
            int selectionStartBackup = SelectionStart + redoStack.ElementAt(redoStack.Count - 1).Length;

            undoStack.Push(Text);
            Text = redoStack.Pop();

            // Restore the cursor's position
            SelectionStart = selectionStartBackup;

            return;
        }    

        undoStack.Push(Text);
        SelectedText = e.KeyChar.ToString();  
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.