Adding page refresh to IPageBase

This commit is contained in:
2025-11-29 10:54:17 -06:00
parent 5515f981cd
commit c64386b985
7 changed files with 10 additions and 5 deletions

View File

@@ -35,6 +35,7 @@ public partial class MainWindow : Window
if (_pages.TryGetValue(pageName.ToLower(), out var page))
{
_mainContentControl?.Content = page;
page.Refresh();
}
else
{