Esempio n. 1
0
 protected override void ShowEvent(QShowEvent arg1)
 {
     base.ShowEvent(arg1);
     if (this.Opened != null)
     {
         this.Opened(this, new EventArgs());
     }
 }
Esempio n. 2
0
        /// <summary>
        /// This event is raised when the window is shown.
        /// </summary>
        protected override void ShowEvent(QShowEvent arg1)
        {
            base.ShowEvent(arg1);

            // Load the main menu.
            this.SetMainMenu(ActionWrapper.GetMainMenu(Central.Manager.MenuManager.MainMenu));

            // Load the tool bar.
            this.SetToolBar(ActionWrapper.GetToolBar(Central.Manager.MenuManager.ToolBar));

            // Set up the workspace.
            Central.Manager.ToolsManager = new Moai.Platform.Linux.Tools.Manager();
            //Central.Manager.ToolsManager.Show(typeof(Moai.Platform.Linux.Tools.ErrorListTool));
            //Central.Manager.ToolsManager.Show(typeof(Moai.Platform.Linux.Tools.ImmediateWindowTool));
            Central.Manager.ToolsManager.Show(typeof(Moai.Platform.Linux.Tools.SolutionExplorerTool));

            // Show the start page.
            this.ShowDock(new Moai.Platform.Linux.Designers.Start.Designer(), ToolPosition.Document);
        }
Esempio n. 3
0
 protected virtual void ShowEvent(QShowEvent e)
 {
 }