Show about button

This commit is contained in:
2026-02-17 08:30:23 +09:00
parent dd2236d111
commit 05d997c398
2 changed files with 12 additions and 1 deletions
+5 -1
View File
@@ -154,6 +154,11 @@ class MainViewModel : BaseViewModel, IFontResolver
}
}
}
public void ShowAbout()
{
DialogHost.Show(new AboutViewModel());
}
public void RemoveFile(object f) => RemoveFileImpl((ReportFile)f);
@@ -567,6 +572,5 @@ class MainViewModel : BaseViewModel, IFontResolver
LogInfo("Saved PDF output to: " + outputPDFFileName);
await CreateAndSaveReportObjectAfterReportCreation();
IsCreatingPDF = false;
return;
}
}