Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a textbox dynamically via code, and adding it to the LayoutRoot. I want the textbox to support multiline, so I have set the AcceptsReturn property to true and TextWrapping property to Wrap. I read in another question that to set the Height as Auto, we have to use double.NaN, and I have done this. But, when I add it, its height is infinite, and covers up the whole space. I just want the textbox to be of a single line initially and let it increase the height when lines are added to it. Please help me with this solution.

share|improve this question

2 Answers

up vote 2 down vote accepted

Wrap your TextBox in a StackPanel. If you're doing it via code, you could do something like this, for example:

public MainPage()
{
    InitializeComponent();

    var textBox = new TextBox
    {
        AcceptsReturn = true,
        Height = Double.NaN,
        TextWrapping = TextWrapping.Wrap
    };

    var stackPanel = new StackPanel();
    stackPanel.Children.Add(textBox);

    this.LayoutRoot.Children.Add(stackPanel);
}
share|improve this answer
is there an alternative. This is very difficult to implement in my scenario. Thank you by the way. – Vignesh PT Jul 8 '12 at 17:56
Thanks. It worked, and I have solved the complexity. – Vignesh PT Jul 8 '12 at 18:15

A good alternative would be to create a resizable row in the grid and put the textBox in there.

<RowDefinition MinHeight="20"/>

Put your TextBox in this row:

Grid.SetRow(textBox,1);

Now if the height of textBox is Auto or, Double.NaN it should appropriately resize itself and the row.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.