I am trying to write a text editor using RichTextBox. My concern is now about Undo and possibly Redo features of RichTextBox.

When I start writing in text box, say 1 minute! if I call Undo method, all it does is just I beleive clearing or resetting richtextbox again. How can I get it to work that it can do better, like Undoing last added word, or last added new line...I mean usual things you expect from Undo function. (The same counts for Redo also!)

Is there properties or some options to achive this? Or I have to implement my own code?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can save the lastest Data and when you want to undo you can change to now data to last data! lastest data can be set anytime that you want!

I Make a winForm with a richTextBox and a button that button undo the wrote text:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace test
{


public partial class Form1 : Form
{
    List<string> LastData = new List<string>();

    int undoCount = 0;

    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        LastData.Add(richTextBox1.Text);
    }

    private void button1_Click(object sender, EventArgs e)
    {
        try
        {
            richTextBox1.Text = LastData[LastData.Count - undoCount - 1];
            ++undoCount;
        }
        catch { }
    }

    private void richTextBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
        LastData.Add(richTextBox1.Text);
        undoCount = 0;
    }
}
}

but I didn't find any better and organized way and you can change

LastData.Add(richTextBox1.Text);
undoCount = 0;

to save new words or new line

update: if you want to save the Ram you can delete the first data on list after many undo saving.

link|improve this answer
I didn't get the idea, can you give some code example please? What I am asking is how can I have Undo points through out my application is active and user changes text. – Sean87 Dec 29 '11 at 12:00
@Sean87: I entered a code!!!! – ahmadali shafiee Dec 29 '11 at 14:00
Thanks, but well...it is a tricky work around! Don't you think this List can grow up tremendously big if user is working with lots of text? If it is the only way, adding a timer and save content every once a while is also good idea. – Sean87 Dec 29 '11 at 14:49
@Sean87: I found better way.I'll edit the answer soon! – ahmadali shafiee Dec 29 '11 at 17:10
@Sean87: It is for undo for many time(not just one time) but if you want to undo just one time you can use string and not use list for lastdata! – ahmadali shafiee Dec 29 '11 at 17:19
feedback

Very surprising that there's no way to get the last change made from the Text_Changed event, but there you go. I think your approach of checking near position of the last change can still work:

1) For the case of other code changing the text, you could write a mini API that wraps your RTB (eg, subclass it). Block changes that don't go through your API, that way you know the position where the text changed.

2) For the case of drag and drop, I believe the cursor moves to the position where the text was dropped, so you can check there.

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.