How can I avoid TextBox vertical streching in following example:

<StackPanel Orientation="Horizontal">
  <Button Height="40">OK</Button>
  <TextBox Width="200"></TextBox>
</StackPanel>
link|improve this question

67% accept rate
I don't have to power to edit tags, but you have a typo on your 'vertical' tag (missing the 'c'). Can you or someone more reputable than me fix that? – Cory Mar 19 '09 at 20:57
feedback

3 Answers

up vote 3 down vote accepted

Use the VerticalAlignment Property

<StackPanel Orientation="Horizontal">
  <Button Height="40">OK</Button>
  <TextBox Width="200" VerticalAlignment="Center"></TextBox>
</StackPanel>
link|improve this answer
feedback
    <StackPanel Orientation="Horizontal">
        <Button Height="40">OK</Button>
        <TextBox Height="40" Width="200"></TextBox>
    </StackPanel>
link|improve this answer
feedback

From MSDN:

Setting the TextWrapping attribute to Wrap causes entered text to wrap to a new line when the edge of the TextBox control is reached, automatically expanding the height of the TextBox control to include room for a new line, if necessary.

So, to fix it, I think you can set TextWrapping = TextWrapping.NoWrap

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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