I'm trying to get the charms bar working in windows 8, but i can't find any thing using google.
What i want is to let users acces settings and privacy policy throuw charms bar.
I all ready have this:
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!
}
I don't know how i can get my settings in place of: //Show the Settings or Privacy Policy HERE!
Any help or rather code samples would be greate.