Esempio n. 1
0
/// <summary>
/// Process click on Mobius command hyperlinks
/// </summary>
/// <param name="e"></param>
/// <param name="Panel"></param>
/// <returns></returns>

        public static bool Process(
            WebBrowserNavigatingEventArgs e,
            Control parentControl)
        {
            PopupMobiusCommandNavigation i = new PopupMobiusCommandNavigation();
            bool result = i.ProcessInternal(e, parentControl);

            return(result);
        }
Esempio n. 2
0
        private void WebBrowser_Navigating(object sender, WebBrowserNavigatingEventArgs e)
        {
            bool processed = PopupMobiusCommandNavigation.Process(e, Panel);

            return;
        }