AdvancedLauncher.SDK.UI.AbstractWindowControl.OnShow C# (CSharp) Method

OnShow() public method

Window show handler
public OnShow ( ) : void
return void
        public virtual void OnShow()
        {
            // nothing to do here
        }

Usage Example

Example #1
0
        /// <summary>
        /// Window show handler
        /// </summary>
        public override void OnShow()
        {
            AbstractWindowControl windowControl = this.Control as AbstractWindowControl;

            if (windowControl != null)
            {
                windowControl.OnShow();
            }
        }