System.Windows.Controls.PopupHelper.OnFocusChanged C# (CSharp) Method

OnFocusChanged() private method

Connected to several events that indicate that the FocusChanged event should bubble up to the parent control.
private OnFocusChanged ( EventArgs e ) : void
e System.EventArgs The event data.
return void
        private void OnFocusChanged(EventArgs e)
        {
            EventHandler handler = FocusChanged;
            if(handler != null)
            {
                handler(this, e);
            }
        }