Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Desktop/SharpManager/Views/About.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
Expand Down Expand Up @@ -33,7 +35,12 @@ public About()
/// <param name="e">The <see cref="RequestNavigateEventArgs"/> instance containing the event data.</param>
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
System.Diagnostics.Process.Start(e.Uri.ToString());
Process.Start(
new ProcessStartInfo(e.Uri.ToString())
{
UseShellExecute = true
}
);
}

private void Window_SourceInitialized(object sender, EventArgs e)
Expand Down