IF I have two items on the stack:
<StackPanel Margin="2,2,2,2" Orientation="Horizontal"> <TextBlock Grid.Column="0" Text="{Binding Name}" /> <TextBox Grid.Column="1" Text="{Binding Age}"/> </StackPanel>
How can I set them with a width equal to 50%, 50%?
Thanks in advance.
source share