Update HyperlinkText.cs

This commit is contained in:
Clemens 2021-03-12 21:02:39 +01:00
parent 5e918dab42
commit 7fb875347a

View file

@ -50,7 +50,7 @@ namespace MapControl
{
try
{
Process.Start(e.Uri.ToString());
Process.Start(new ProcessStartInfo(e.Uri.ToString()) { UseShellExecute = true });
}
catch (Exception ex)
{