feat: add about us page.

This commit is contained in:
Dong Bin
2025-05-18 22:05:25 +08:00
parent c878916527
commit 8924a0bbed
5 changed files with 299 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ public class MenuViewModel : ViewModelBase
MenuItems = new ObservableCollection<MenuItemViewModel>
{
new() { MenuHeader = "Introduction", Key = MenuKeys.MenuKeyIntroduction, IsSeparator = false },
new() { MenuHeader = "About Us", Key = MenuKeys.MenuKeyAboutUs, IsSeparator = false },
new() { MenuHeader = "Controls", IsSeparator = true },
new()
{
@@ -102,6 +103,7 @@ public class MenuViewModel : ViewModelBase
public static class MenuKeys
{
public const string MenuKeyIntroduction = "Introduction";
public const string MenuKeyAboutUs = "AboutUs";
public const string MenuKeyAutoCompleteBox = "AutoCompleteBox";
public const string MenuKeyAvatar = "Avatar";
public const string MenuKeyBadge = "Badge";