Forex_Strategy_Builder.Command_Console.Command_Console C# (CSharp) Method

Command_Console() public method

Constructor
public Command_Console ( ) : System
return System
        public Command_Console()
        {
            // The Form
            Text        = Language.T("Command Console");
            MaximizeBox = false;
            MinimizeBox = false;
            Icon        = Data.Icon;
            BackColor   = LayoutColors.ColorFormBack;

            // Test Box Input
            tbxInput             = new TextBox();
            tbxInput.BorderStyle = BorderStyle.FixedSingle;
            tbxInput.Parent      = this;
            tbxInput.Location    = Point.Empty;
            tbxInput.KeyUp      += new KeyEventHandler(TbxInput_KeyUp);

            // Test Box Output
            tbxOutput             = new TextBox();
            tbxOutput.BorderStyle = BorderStyle.FixedSingle;
            tbxOutput.BackColor   = Color.Black;
            tbxOutput.ForeColor   = Color.GhostWhite;
            tbxOutput.Parent      = this;
            tbxOutput.Location    = Point.Empty;
            tbxOutput.Multiline   = true;
            tbxOutput.WordWrap    = false;
            tbxOutput.Font        = new Font("Courier New", 10);
            tbxOutput.ScrollBars  = ScrollBars.Vertical;
        }