mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-18 13:20:11 +10:00
Fix more hyperlink issues
This commit is contained in:
@@ -57,7 +57,10 @@ namespace WPinternals
|
||||
}
|
||||
else
|
||||
{
|
||||
Process.Start(link.NavigateUri.ToString());
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = link.NavigateUri.AbsoluteUri;
|
||||
process.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user