I've got a FadeTransition set up, with some not too complicated content, which is simply supposed to fade. Instead, it zooms the content in, and then fades. It's like it's taking a snapshot of the old content at the wrong size or something. I can't quite reproduce it outside of the project I'm working on. As soon as the Content is changed, the transition control zooms in on the text, and then fade/zooms it. How do I make this simply a fade, without a zoom?
<telerik:RadTransitionControl Duration="0:0:1" Content="{TemplateBinding CurrentThreshold}"> <telerik:RadTransitionControl.Transition> <telerik:FadeTransition /> </telerik:RadTransitionControl.Transition> <telerik:RadTransitionControl.ContentTemplate> <DataTemplate DataType="{x:Type local:ServiceLevelThreshold}"> <Grid> <Rectangle Opacity=".75" Fill="{Binding Background}" /> <TextBlock Margin="4" Foreground="{Binding Foreground}" HorizontalAlignment="Center" VerticalAlignment="Center" Style="{StaticResource ServiceLevelBlockContentTextBlock}" Text="{Binding Value, RelativeSource={RelativeSource AncestorType={x:Type local:ServiceLevelBlock}}}" FontSize="30" /> </Grid> </DataTemplate> </telerik:RadTransitionControl.ContentTemplate></telerik:RadTransitionControl>