Beispiel #1
0
        void mnuUndo_Click(object sender, EventArgs e)
        {
            IDocumentForm document = GetDocument();

            if (document != null)
            {
                document.Undo();
            }
        }
Beispiel #2
0
        private void MnuUndoClick(object sender, EventArgs e)
        {
            IDocumentForm document = this.GetDocument();

            document?.Undo();
        }