Beispiel #1
0
        public new int Run(WindowCore mainWindow = null)
        {
            if ((mainWindow != null) && (mainWindow is IChromelyHost))
            {
                IChromelyHost chromelyHost = (IChromelyHost)mainWindow;
                m_hostConfig = chromelyHost.HostConfig;
            }

            return(base.Run(mainWindow));
        }
Beispiel #2
0
        /// <summary>
        /// The run.
        /// </summary>
        /// <param name="mainWindow">
        /// The main window.
        /// </param>
        /// <returns>
        /// The <see cref="int"/>.
        /// </returns>
        public new int Run(WindowCore mainWindow = null)
        {
            if (mainWindow is IChromelyHost)
            {
                IChromelyHost chromelyHost = (IChromelyHost)mainWindow;
                this.mHostConfig = chromelyHost.HostConfig;
            }

            return(base.Run(mainWindow));
        }