示例#1
0
        void _fadeOut_AnimationEnd(object sender, EventArgs e)
        {
            this._Token.Cancel();
            this._Token.Dispose();
            this._Token = null;

            _Layout.Touch         -= LayoutTouched;
            _Layout.Visibility     = ViewStates.Gone;
            _fadeOut.AnimationEnd -= _fadeOut_AnimationEnd;

            _Set.Dispose();
            _Set = null;

            _fadeOut.RemoveAllListeners();
            _fadeOut.Dispose();
            _fadeOut = null;

            _Layout.Dispose();
            _Layout = null;
        }