Ejemplo n.º 1
0
        private void pasteToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Blank frm = (Blank)this.ActiveMdiChild;

            if (frm != null)
            {
                frm.Paste();
            }
            else
            {
                MessageBox.Show("Нет активных форм");
            }
        }