demo/Pages/Account/Settings/Index.razor.cs
2024-06-21 16:48:24 +08:00

23 lines
595 B
C#

using System.Collections.Generic;
using AntDesign;
namespace antblazorpro.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;
}
}
}