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

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

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

            return(args);
        }
예제 #3
0
		protected virtual PopupHidingEventArgs OnHiding()
		{
			var args = new PopupHidingEventArgs();
            Hiding?.Invoke(this, args);
			return args;
		}