Represents the available event data, when the Popup.Showing event is invoked.
상속: System.EventArgs
예제 #1
0
        protected virtual PopupShowingEventArgs OnShowing()
        {
            var args = new PopupShowingEventArgs();

            Showing?.Invoke(this, args);
            return(args);
        }
예제 #2
0
파일: Popup.cs 프로젝트: sorke/FormsPopup
        protected virtual PopupShowingEventArgs OnShowing()
        {
            var args    = new PopupShowingEventArgs();
            var handler = Showing;

            if (handler != null)
            {
                handler(this, args);
            }

            return(args);
        }
예제 #3
0
		protected virtual PopupShowingEventArgs OnShowing()
		{
			var args = new PopupShowingEventArgs();
		    Showing?.Invoke(this, args);
		    return args;
		}