Hi,
i want to enable the radwrappanel animation. I`ve set the isAnimated= true but for some reasons it doesn`t work
Here is my sample
i want to enable the radwrappanel animation. I`ve set the isAnimated= true but for some reasons it doesn`t work
Here is my sample
<ListBox ItemsSource="{Binding Data}"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <telerik:RadWrapPanel IsAnimated="True" Width="500" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" /> </ItemsPanelTemplate> </ListBox.ItemsPanel> <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Vertical"> <Image Source="{Binding DataString2}" Height="100" Width="100"></Image> <TextBlock Text="{Binding DataString3}"></TextBlock> </StackPanel> </DataTemplate> </ListBox.ItemTemplate> </ListBox>
Am i missing something?
Thank you,
Mariya