Hello,
Suppose we have this XAML :
and when button1_Click has this code :
It works well.
But replacing it with this code :
causes the transition to not to work !
It seems that it only detects first layer changes in content and doesn't detect deep change.
So have I forgotten something here or its the nature of this control ?
Regards,
                                Suppose we have this XAML :
<StackPanel>    <telerik:RadTransitionControl x:Name="tr1">        <Label x:Name="lblMessage"></Label>    </telerik:RadTransitionControl>    <Button Content="Button"  Height="23" Name="button1" Width="75" Click="button1_Click" /></StackPanel>and when button1_Click has this code :
tr1.Content = DateTime.Now.ToString();But replacing it with this code :
lblMessage.Content = DateTime.Now.ToString();It seems that it only detects first layer changes in content and doesn't detect deep change.
So have I forgotten something here or its the nature of this control ?
Regards,