FlatRedBall.Glue.Controls.TextInputWindow.TextInputWindow C# (CSharp) Method

TextInputWindow() public method

public TextInputWindow ( ) : System
return System
        public TextInputWindow()
		{
			InitializeComponent();
			DialogResult = DialogResult.Cancel;

			StartPosition = FormStartPosition.Manual;
            // This will be set in OnShow after all controls 
            // have been added because we want to center the control 
            // where the mouse is.
            //Location = new Point(TextInputWindow.MousePosition.X, TextInputWindow.MousePosition.Y);

            this.textBox1.Focus();
        }