how to view specific setting page in winrt application using C# from outside button click?
In javascript i found like this WinJS.UI.SettingsFlyout.showSettings("About", "/Settings/About.html")
But i could not able to find this in c#,I am using callisto for Setting Flyouts
I'm using Callisto and C# too, and this is how I solved the problem.
Then from other pages I can just call
or
To bring up the settings pane I want to see :o)
Edit your app.xaml file and reference this snippet for your code:
Then, when you want to display that setting, do this:
The first step is to add a listener for the CommandsRequest event on the SettingsPane for the page where you want the setting to be displayed. For example:
Then define the event handler
Note that in this scenario, GeneralSettingsFlyout is simply a Page which will be loaded into the settings pane once that particular setting is selected (Callisto automatically handles this).
SettingsFlyout is the class from Callisto.