ComponentFactory.Krypton.Ribbon.ViewRibbonMinimizedManager.Inactive C# (CSharp) Method

Inactive() public method

Application we are inside has become inactive.
public Inactive ( ) : void
return void
        public void Inactive()
        {
            if (_active)
            {
                // Simulate the mouse leaving the application
                MouseLeave(EventArgs.Empty);

                // No longer active
                _active = false;
            }
        }