public void Input()
        {
            // Open the "Create Condition" menu.
            InputSim.Press(Keys.Space, Wait.Long);

            // Setup control spot
            InputSim.Press(Keys.Tab, Wait.Short);
            // The spot will be at the bottom when tab is pressed.
            // Pressing up once will select the operator value, up another time will select the first value paramerer.
            InputSim.Press(Keys.Up, Wait.Short, 2);

            // Input value1.
            Value1.Input();

            // Set the operator.
            InputSim.Press(Keys.Down, Wait.Short);
            InputSim.SelectEnumMenuOption(CompareOperator);

            // Input value2.
            InputSim.Press(Keys.Down, Wait.Short);
            Value2.Input();

            // Close the Create Condition menu.
            InputSim.Press(Keys.Escape, Wait.Long);
        }