Represents the available event data, when the Popup.Hiding event is invoked.
Inheritance: System.EventArgs
Esempio n. 1
0
        protected virtual PopupHidingEventArgs OnHiding()
        {
            var args = new PopupHidingEventArgs();

            Hiding?.Invoke(this, args);
            return(args);
        }
Esempio n. 2
0
        protected virtual PopupHidingEventArgs OnHiding()
        {
            var args    = new PopupHidingEventArgs();
            var handler = Hiding;

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

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