PowerArgs.Cli.BreadcrumbElement.BreadcrumbElement C# (CSharp) Method

BreadcrumbElement() public method

public BreadcrumbElement ( System.Action activationHandler ) : System
activationHandler System.Action
return System
        public BreadcrumbElement(Action activationHandler)
        {
            this.CanFocus = true;
            this.KeyInputReceived.SubscribeForLifetime((key) =>
            {
                if (key.Key == ConsoleKey.Enter)
                {
                    activationHandler();
                }
            }, this.LifetimeManager);
        }
BreadcrumbElement