mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-20 14:11:02 +10:00
Fix more hyperlink issues
This commit is contained in:
+4
-1
@@ -39,7 +39,10 @@ namespace WPinternals
|
||||
{
|
||||
if (args.Source is Hyperlink link)
|
||||
{
|
||||
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