Tagged Questions
2
votes
2answers
1k views
Setting a WPF control to expand to fill available space, and no more
How can I set up a WPF control to fill the available space in its parent's container, but not expand the parent?
The following snippet describes the layout I am attempting. I would like the Grid to ...
0
votes
3answers
367 views
Avoid TextBox vertical stretching
How can I avoid TextBox vertical streching in following example:
<StackPanel Orientation="Horizontal">
<Button Height="40">OK</Button>
<TextBox ...