I have a TextBox in a Stackpanel, as in the code below
<StackPanel x:Name="EtenStack" Visibility="{Binding Path=Sort, ConverterParameter=Eten, Converter={StaticResource convertEten}}"> <StackPanel Orientation="Horizontal" HorizontalAlignment="Right"> <Label Content="Bereidingstijd"/> <TextBox Height="23" Width="150" Text="{Binding Path=Time, TargetNullValue='', Mode=TwoWay}"/> </StackPanel> When the Visibility is set to Visible in my converter, my textbox doesn't update it's Text property, even though the Property gets it's correct value (tested by showing a MessageBox with the Property).
Any thoughts?