Example #1
0
        private void OnDockspacePageDropDownClicked(object sender, CancelDropDownEventArgs e)
        {
            // Click the drop down button should cause the slide out to be focused so that it
            // does not slide back again if you move the mouse away from the slide out area
            _dockspaceSlide?.Select();

            PageDropDownClicked?.Invoke(sender, e);
        }
 /// <summary>
 /// Raises the PageDropDownClicked event.
 /// </summary>
 /// <param name="e">An CancelDropDownEventArgs containing the event data.</param>
 protected virtual void OnPageDropDownClicked(CancelDropDownEventArgs e)
 {
     PageDropDownClicked?.Invoke(this, e);
 }