Created
June 16, 2016 19:03
-
-
Save smetlov/24bee4d43f4cc2c257594edeeede4554 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
public abstract class BaseContentPage : ContentPage | |
{ | |
public void SendAppearing() | |
{ | |
OnAppearing(); | |
} | |
public void SendDisappearing() | |
{ | |
OnDisappearing(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment