refactor: 重构待办事项模块结构与命名

This commit is contained in:
ShaoHua
2026-04-08 19:59:50 +08:00
parent 7a4c516a20
commit 04263dff4e
30 changed files with 888 additions and 320 deletions
@@ -44,14 +44,10 @@ public partial class MainWindow : Window
{
try
{
if (_appSettings.WebServer.IsUsingStatic)
{
MainWebView.Url = new Uri(_webServer.BaseUrl);
}
else
{
MainWebView.Url = new Uri(_appSettings.WebServer.ForEndUrl);
}
MainWebView.Url =
_appSettings.WebServer.IsUsingStatic
? new Uri(_appSettings.WebServer.HostUrl)
: new Uri(_appSettings.WebServer.ForEndUrl);
MainWebView.NavigationCompleted += async (s, e) =>
{