Editor for WinForms | ComponentOne
Creating an XHTML Editor in Code / The ToolStripMain class / Editing Commands
In This Topic
    Editing Commands
    In This Topic

    The ToolStripMain class implements the usual Undo, Redo, Find, and Replace commands, which are also deferred to the C1Editor control:

    To write code in C#

    C#
    Copy Code
    void Undo_Click(object sender, EventArgs e)
    {
        Editor.Undo();
    }
    void Redo_Click(object sender, EventArgs e)
    {
        Editor.Redo();
    }
    void Find_Click(object sender, EventArgs e)
    {
        Editor.ShowDialog(C1.Win.C1Editor.DialogType.Find);
    }
    void Replace_Click(object sender, EventArgs e)
    {
        Editor.ShowDialog(C1.Win.C1Editor.DialogType.Replace);
    }
    

    The find and replace commands are implemented with calls to the C1Editor's ShowDialog commands, which also supports several other commands defined by the DialogType enumeration and not used in this sample: