TransformBinary
TransformBinary

Reputation: 268

About Page on Windows 8 application

i'm trying to create a tab called about page under the setting in the charm(right bar). I want the tab About inside the settings and when clicked , it will load the information inside the snap view itself. I'm coding in C# , anyone have any idea about this?

Regards, Binary

Upvotes: 3

Views: 1742

Answers (2)

DreamTimeStudioZ
DreamTimeStudioZ

Reputation: 586

Yes, you have to register your About "page" as a SettingsCommand in order to get it to show up in the Settings charm.

Upvotes: 1

Krishna
Krishna

Reputation: 3007

I think you want an about link to show up when the user brings up the settings pane - and when clicked - that should show an about page in the settings pane itself - right?

If so, have a look at the Callisto project on github: it has a SettingsFlyout which you could use as follows:

var settingsFlyout = new SettingsFlyout();
settingsFlyout.Content = new YourSettingsControl(); //this is just a regular XAML UserControl
settingsFlyout.IsOpen = true;

Now, all you need to do is execute the code above, when the user clicks on your settings link. As to how the link itself shows up in the settings pane, see the App settings sample on MSDN.

Upvotes: 0

Related Questions