Created
May 9, 2019 15:00
-
-
Save icalderond/47f16d65892935831c4b78d9f38bc1c0 to your computer and use it in GitHub Desktop.
Usando Messaging Center Xamarin Forms
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
MessagingCenter.Subscribe<MainMenuViewModel, int>(this, "ChangeCounter", (sender, args) => Counter = args); | |
//MainMenuViewModel.cs | |
MessagingCenter.Send(this, "ChangeCounter", configApp.CounterMessage); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment