Created
December 4, 2012 09:11
-
-
Save kw0006667/4202080 to your computer and use it in GitHub Desktop.
在程式碼中,加入「SettingsPane」的「CommandsRequested」事件註冊
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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