Fluent.ComboBox.OnDropDownClosed C# (CSharp) Method

OnDropDownClosed() protected method

Reports when a combo box's popup closes.
protected OnDropDownClosed ( EventArgs e ) : void
e System.EventArgs The event data for the event.
return void
        protected override void OnDropDownClosed(EventArgs e)
        {
            base.OnDropDownClosed(e);
            if (Mouse.Captured == this) Mouse.Capture(null);
            if (focusedElement != null) focusedElement.LostKeyboardFocus -= OnFocusedElementLostKeyboardFocus;
            focusedElement = null;
            ShowPopupOnTop = false;
            galleryPanel.Width = double.NaN;
            scrollViewer.Height = double.NaN;
        }