I have following problem:
My TextBox should fill the entire space, but the property "VerticalAlignment="Stretch"" does not do this for me.
Here is my code:
<TextBox
x:Name="txt_in_ct_length_aisle"
Text="{Binding CtLengthAisle, UpdateSourceTrigger=PropertyChanged,
ValidatesOnDataErrors=True,NotifyOnValidationError=True}"
Validation.Error="MainViewHasErrors"
TextWrapping="Wrap" VerticalAlignment="Stretch"
KeyboardNavigation.TabIndex="0"/>
<Label x:Uid="LabelShowHint" Content="?" HorizontalAlignment="Right"/>
How should I set the properties right? To sum up, I want my TextBox to fill the space until the "?" on the right side.
Can anyone of you please help?
Thank you!