isa
isa

Reputation: 1085

How to invoke the settings charm programmatically?

I want to invoke the settings charm from a click event.

Upvotes: 6

Views: 3748

Answers (2)

Keisuke KATO
Keisuke KATO

Reputation: 1529

Windows.UI.ApplicationSettings.SettingsPane.Show();

Upvotes: 7

Jennifer Marsman - MSFT
Jennifer Marsman - MSFT

Reputation: 5225

Check out the SettingsPane class: http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.applicationsettings.settingspane.aspx

It seems like calling the Show() method will do the trick.

Upvotes: 11

Related Questions