Skip to content

Instantly share code, notes, and snippets.

@kw0006667
Created December 4, 2012 09:11
Show Gist options
  • Save kw0006667/4202080 to your computer and use it in GitHub Desktop.
Save kw0006667/4202080 to your computer and use it in GitHub Desktop.
在程式碼中,加入「SettingsPane」的「CommandsRequested」事件註冊
public MainPage()
{
this.InitializeComponent();
SettingsPane.GetForCurrentView().CommandsRequested += MainPage_CommandsRequested;
}
void MainPage_CommandsRequested(SettingsPane sender, SettingsPaneCommandsRequestedEventArgs args)
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment