Base AbstractWindowControl implementation for IWindowManager's windows.
상속: AbstractUserControl
예제 #1
0
        /// <summary>
        /// Window show handler
        /// </summary>
        public override void OnShow()
        {
            AbstractWindowControl windowControl = this.Control as AbstractWindowControl;

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