Example #1
0
    protected void OnDidHide_Invocator(BaseUiElement widget)
    {
        var handler = DidHide;

        if (handler != null)
        {
            handler(widget);
        }
    }
Example #2
0
    protected void OnWillShow_Invocator(BaseUiElement widget)
    {
        var handler = WillShow;

        if (handler != null)
        {
            handler(widget);
        }
    }