Example #1
0
 internal static void LaunchUrl(IWin32Window owner, string url)
 {
     if (iShellService != null)
     {
         iShellService.LaunchUrl(owner, url);
     }
     else
     {
         ProcessStartInfo startInfo = new ProcessStartInfo
         {
             FileName        = url,
             UseShellExecute = true
         };
         Process.Start(startInfo);
     }
 }