SilverFlow.Controls.FloatingWindow.OnActivated C# (CSharp) Method

OnActivated() protected method

Raises the FloatingWindow.Activated event.
protected OnActivated ( EventArgs e ) : void
e System.EventArgs The event data.
return void
        protected virtual void OnActivated(EventArgs e)
        {
            EventHandler handler = Activated;
            if (handler != null)
            {
                handler(this, e);
            }
        }
FloatingWindow