Beispiel #1
0
 public override bool Action(string action)
 {
     bool result = base.Action(action);
     if (result && action == ACTION_SHOW)
     {
         WebBrowserForm dlg = new WebBrowserForm();
         dlg.Show();
     }
     return result;
 }
Beispiel #2
0
        public override bool Action(string action)
        {
            bool result = base.Action(action);

            if (result && action == ACTION_SHOW)
            {
                WebBrowserForm dlg = new WebBrowserForm();
                dlg.Show();
            }
            return(result);
        }