Microsoft.ManagementConsole.FormView.ProcessNotification C# (CSharp) Метод

ProcessNotification() приватный Метод

private ProcessNotification ( Notification notification ) : void
notification Microsoft.ManagementConsole.Internal.Notification
Результат void
        internal override void ProcessNotification(Notification notification)
        {
            if (notification is ViewKeyboardFocusNotification)
            {
                ViewKeyboardFocusNotification notification2 = (ViewKeyboardFocusNotification) notification;
                this.TakeKeyboardFocus(notification2.Forward);
            }
            else
            {
                base.ProcessNotification(notification);
            }
        }