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
        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;
		}