private ContentEx createEconomicalContent(string name)
        {
            ContentEx c = new EconomicalContentImpl2(
                getMainManager(),
                name,
                -1,
                new EconomicalContentImpl2.WindowCreator(createControl));

            getMainManager().Contents.Add(c);

            return(c);
        }
示例#2
0
        private ContentEx createEconomicalContent(string name)
        {
            ContentEx c = new EconomicalContentImpl2(
                MainWindow.mainWindow.dockingManager,
                name,
                -1,
                new EconomicalContentImpl2.WindowCreator(createControl));

            MainWindow.mainWindow.dockingManager.Contents.Add(c);

            return(c);
        }