mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
FIx an issue with hyperlinks
This commit is contained in:
@@ -63,7 +63,10 @@ namespace WPinternals
|
||||
(this.DataContext as GettingStartedViewModel)?.SwitchToDownload();
|
||||
break;
|
||||
default:
|
||||
Process.Start(link.NavigateUri.AbsoluteUri);
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = link.NavigateUri.AbsoluteUri;
|
||||
process.Start();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user