ComponentFactory.Krypton.Ribbon.ContextTitleController.MouseDown C# (CSharp) Method

MouseDown() public method

Mouse button has been pressed in the view.
public MouseDown ( Control c, Point pt, MouseButtons button ) : bool
c System.Windows.Forms.Control Reference to the source control instance.
pt Point Mouse position relative to control.
button MouseButtons Mouse button pressed down.
return bool
        public virtual bool MouseDown(Control c, Point pt, MouseButtons button)
        {
            // Only interested if the mouse is over the element
            if (_mouseOver)
            {
                // Only interested in left mouse pressing down
                if (button == MouseButtons.Left)
                {
                    if (ContextTabSet != null)
                    {
                        // We do not operate the context selection at design time
                        if (!_ribbon.InDesignMode && _ribbon.Enabled)
                        {
                            // Select the first tab in the context
                            ContextTabSet.FirstTab.RibbonTab.Ribbon.SelectedTab = ContextTabSet.FirstTab.RibbonTab;
                        }
                    }
                }
            }

            return false;
        }