Created
March 11, 2017 17:59
-
-
Save dsibinski/543cdbccbb0e28c144d15548db8b9e6f to your computer and use it in GitHub Desktop.
This file contains 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
protected override void OnResume() | |
{ | |
base.OnResume(); | |
InitializeUserControlsEvents(); | |
// TODO: retrieving variables (amount, number of people) from persistent storage (file, database) | |
} | |
// ... | |
private void InitializeUserControlsEvents() | |
{ | |
_btnCalculate.Click += _btnCalculate_Click; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment