PhotoViewerTest.PhotoView.OnHandleTap C# (CSharp) Method

OnHandleTap() protected method

protected OnHandleTap ( EventArgs e ) : void
e System.EventArgs
return void
        protected virtual void OnHandleTap(EventArgs e)
        {
            var handler = Tap;
              if (handler != null)
            handler(this, e);
        }