Exemple #1
0
 public void StartCustomBrowser()
 {
     try
     {
         _customBrowserForm = new CustomBrowser()
         {
             TopLevel = true
         };
         _customBrowserForm.Show();
     }
     catch (Exception exception)
     {
         TraceOps.Out(exception.ToString());
     }
 }
Exemple #2
0
 public void StartCustomBrowser()
 {
     try
     {
         _customBrowserForm = new CustomBrowser() { TopLevel = true };
         _customBrowserForm.Show();
     }
     catch (Exception exception)
     {
         TraceOps.Out(exception.ToString());
     }
 }