Installer: Bundle and ship source code together with binaries
Test / Run tests (push) Successful in 3m14s
Test / Run tests (push) Successful in 3m14s
This commit is contained in:
@@ -11,7 +11,15 @@ namespace Elwig.Windows {
|
||||
}
|
||||
|
||||
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e) {
|
||||
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri) { UseShellExecute = true });
|
||||
try {
|
||||
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri) { UseShellExecute = true });
|
||||
} catch { }
|
||||
}
|
||||
|
||||
private void Hyperlink_RequestNavigate_Explorer(object sender, RequestNavigateEventArgs e) {
|
||||
try {
|
||||
Process.Start("explorer.exe", e.Uri.AbsoluteUri);
|
||||
} catch { }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user