我试图让魅力栏在 Windows 8 中工作,但我无法使用谷歌找到任何东西。
我想要的是让用户通过魅力栏访问设置和隐私政策。
我都准备好了:
public MainPage()
{
this.InitializeComponent();
SettingsPane.GetForCurrentView().CommandsRequested += MainPage_CommandsRequested;
}
void MainPage_CommandsRequested(SettingsPane sender, SettingsPaneCommandsRequestedEventArgs args)
{
args.Request.ApplicationCommands.Add(new SettingsCommand("commandid", "Settings", DoOperation));
}
private async void DoOperation(IUICommand command)
{
//Show the Settings or Privacy Policy HERE!
}
我不知道如何让我的设置代替://在此处显示设置或隐私政策!
任何帮助或更确切地说是代码示例都会很棒。