This question is locked. New answers and comments are not allowed.
Hi...
I have a RadDataBoundListBox which has an EmptyContentTemplate with a progress bar indicator.
My problem is that the progress bar is always shown at the left up corner and I don't know why.
01.<Grid x:Name="ContentPanel" Grid.Row="1" Margin="5">02. <telerikPrimitives:RadDataBoundListBox03. Name="listBoxName"04. EmptyContent="Loadding..."05. HorizontalContentAlignment="Center"06. HorizontalAlignment="Center"07. Margin="12">08. 09. <telerikPrimitives:RadDataBoundListBox.ItemTemplate>10. <DataTemplate>11. <Button12. Foreground="Black"13. Content="{Binding MyLabel}"14. Height="85"15. Width="85"16. BorderThickness="1"17. Background="WhiteSmoke"18. BorderBrush="#FFA29999"19. HorizontalAlignment="Center"20. VerticalAlignment="Center" />21. </DataTemplate>22. </telerikPrimitives:RadDataBoundListBox.ItemTemplate>23. 24. <telerikPrimitives:RadDataBoundListBox.VirtualizationStrategyDefinition>25. <telerikPrimitives:WrapVirtualizationStrategyDefinition Orientation="Horizontal" />26. </telerikPrimitives:RadDataBoundListBox.VirtualizationStrategyDefinition>27. 28. <telerikPrimitives:RadDataBoundListBox.ItemAddedAnimation>29. <telerikCore:RadMoveAnimation StartPoint="500, 0" EndPoint="0, 0" Duration="0:0:1">30. <telerikCore:RadMoveAnimation.Easing>31. <CubicEase EasingMode="EaseOut"/>32. </telerikCore:RadMoveAnimation.Easing>33. </telerikCore:RadMoveAnimation>34. </telerikPrimitives:RadDataBoundListBox.ItemAddedAnimation>35. 36. </telerikPrimitives:RadDataBoundListBox>37. </Grid>