添加仓库链接

This commit is contained in:
ShaoHua
2026-01-01 05:18:39 +08:00
parent c6636be0c3
commit ed3d90cd7a
2 changed files with 16 additions and 0 deletions
+6
View File
@@ -1,3 +1,4 @@
using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
@@ -86,5 +87,10 @@ namespace TodoList.Views
vm.OpenEditDialogCommand.Execute(todoItem);
}
}
private void Hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e)
{
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri) { UseShellExecute = true });
}
}
}