Help Info Control für Links zur Hilfeseite erstellt

This commit is contained in:
2026-05-03 23:58:10 +02:00
parent 313b094e45
commit c3f557a49f

View File

@@ -31,7 +31,7 @@ namespace BeWo.View.Controls.Utils
private void btn_Click(object sender, RoutedEventArgs e)
{
if (!string.IsNullOrWhiteSpace(Url))
if (!string.IsNullOrWhiteSpace(Url) && Url.StartsWith("http"))
Process.Start(new ProcessStartInfo(Url) { UseShellExecute = true });
}
}