Files
AntSK/Xzy.KnowledgeBase/Pages/Account/Settings/Index.razor.cs
2024-02-01 23:12:53 +08:00

23 lines
600 B
C#

using AntDesign;
using System.Collections.Generic;
namespace Xzy.KnowledgeBase.Pages.Account.Settings
{
public partial class Index
{
private readonly Dictionary<string, string> _menuMap = new Dictionary<string, string>
{
{"base", "Basic Settings"},
{"security", "Security Settings"},
{"binding", "Account Binding"},
{"notification", "New Message Notification"},
};
private string _selectKey = "base";
private void SelectKey(MenuItem item)
{
_selectKey = item.Key;
}
}
}