Skip Navigation LinksHome / Community & Support / Code Library / WPF > General and Integration Projects > RadRichTextBox Multiple Undo/Redo

Not answered RadRichTextBox Multiple Undo/Redo

Feed from this thread
  • Posted on Apr 19, 2012 (permalink)

    Requirements

    RadControls version - RadControls for WPF Q1 2012 SP1
                                                   

     

    .NET version 4.0

     

    Visual Studio version 2010    

     

    programming language C#

     

    browser support

    all browsers supported by RadControls


    PROJECT DESCRIPTION                                    
    Multiple Undo/Redo and Typing Action Grouping - see attached zip, and to use...
    // in code-behind
     
    var undoControl = new MultipleUndoControl();
    // add to xaml container
    UndoPopup.Items.Add(undoControl);
    RichTextBoxUndoRibbonUI.SetRichTextCommand(undoControl, new MultiUndoCommand(rtb));
     
    var redoControl = new MultipleRedoControl();
    // add to xaml container
    RedoPopup.Items.Add(redoControl);
    RichTextBoxRedoRibbonUI.SetRichTextCommand(redoControl, new MultiRedoCommand(rtb));

    Attached files

    Reply

  • Mihail Mihail admin's avatar

    Posted on Apr 25, 2012 (permalink)

    Hello Steve,

    Thank you for sharing your code with the community. I have updated your Telerik points.  

    All the best,
    Mihail
    the Telerik team

    Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Code Library / WPF > General and Integration Projects > RadRichTextBox Multiple Undo/Redo