I have, in a window, a Grid that contains a RadioButton, a TexBox and a Button, each in column 0, 1, 2, respectively. They all have their heights set to auto.
Then, in another part of the window, I have another grid with a Label, a TextBox and a Button, in columns 0, 1, and 2. Heights are also set to auto.
The problem I have is that the first grid's height is smaller than the second's. I guess it's because Label is forcing the second one to be taller. How can I make it so that the first grid is as tall as the second? I tried doing this:
Name the textbox in the second grid SomeName.
In the <Grid.ColumnDeclarations>
of the first Grid, I changed Height from "auto" to "{Binding ElementName=SomeName, Path=Height}".
But that didn't do what I wanted. The size was the same. I guess the Binding is basically getting "auto" and throwing it there, which ends up being the same thing.
Also, I'm looking for a solution that doesn't involve setting the heights to a fixed value.