/// <summary>
        /// Called after everything is initalized to finish parts, that rely on other initializations.
        /// Here you must create and register new Controls and Windows.
        /// </summary>
        public void PostInitialize()
        {
            // Add the Panel to the right tab
            PrintrBotPanel panel = new PrintrBotPanel();
            panel.Connect(host);
            host.RegisterHostComponent(panel);

            // Add some text in the about dialog
            host.AboutDialog.RegisterThirdParty("PrintrBotPlugin", "\r\n\r\nPrintrBotPlugin v1\r\nwritten by Cyril Chapellier for CKAB \r\nwww.ckab.com");
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Called after everything is initalized to finish parts, that rely on other initializations.
        /// Here you must create and register new Controls and Windows.
        /// </summary>
        public void PostInitialize()
        {
            // Add the Panel to the right tab
            PrintrBotPanel panel = new PrintrBotPanel();

            panel.Connect(host);
            host.RegisterHostComponent(panel);

            // Add some text in the about dialog
            host.AboutDialog.RegisterThirdParty("PrintrBotPlugin", "\r\n\r\nPrintrBotPlugin v1\r\nwritten by Cyril Chapellier for CKAB \r\nwww.ckab.com");
        }