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

GridPage() public method

public GridPage ( ) : System
return System
        public GridPage()
        {
            CommandBar = Add(new CommandBar() { Y = 1 });
            filterLabel = Add(new Label() { Y = 2, Text = "Filter:".ToConsoleString(), Width = "Filter:".Length });
            FilterTextBox = Add(new TextBox() { Y = 2, X = filterLabel.Text.Length });
            Grid = Add(new Grid() { Y = 3 });

            Grid.FilterTextBox = FilterTextBox;
        }