Created
December 15, 2012 20:51
-
-
Save ElemarJR/4299075 to your computer and use it in GitHub Desktop.
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
| void MainPage::OnNavigatedTo(NavigationEventArgs^ e) | |
| { | |
| (void) e; // Unused parameter | |
| WinRTComponentCS::Calculator^ calculator = ref new WinRTComponentCS::Calculator(); | |
| this->AddResultTextBox->Text = calculator->Add(7,3).ToString(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment