ComponentFactory.Krypton.Ribbon.ViewRibbonMinimizedManager.Inactive C# (CSharp) Méthode

Inactive() public méthode

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

                // No longer active
                _active = false;
            }
        }