Example #1
0
        void menu_Export(object sender, EventArgs e)
        {
            ExportForm f = new ExportForm();

            IInterface interf = Core.GetGlobal("Interface") as IInterface;

            if (interf != null)
            {
                f.MdiParent = interf.GetMainForm();
            }

            f.Show();
        }
Example #2
0
        void menu_Export(object sender, EventArgs e)
        {
            ExportForm f = new ExportForm();

            IInterface interf = Core.GetGlobal("Interface") as IInterface;
            if (interf != null)
                f.MdiParent = interf.GetMainForm();

            f.Show();
        }