Installer: Bundle and ship source code together with binaries
Test / Run tests (push) Successful in 3m14s

This commit is contained in:
2026-05-01 15:10:19 +02:00
parent 0617726139
commit 5db5876905
7 changed files with 41 additions and 3 deletions
+9 -1
View File
@@ -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 { }
}
}
}