Hi.
My tiles control is bound to ObservableCollection.
The problem is when I this collection updates.
I update this collection from WCF service, basically it's the same items but what logically happens is the collection disposed and new collection appears.
The behavior on the XamTilesControl is that all items disappear and comming back again with animation.
Moreover, When one of the tiles is maximized, it turning to be normal.
Do you know a solution for this except of updating the bound collection properties?
Thanks,
Hello,
Thank you for your post. I have been looking through it and I suggest you add the following code in your XamTilesControl:
<igTiles:XamTilesControl.NormalModeSettings> <igTiles:NormalModeSettings/> </igTiles:XamTilesControl.NormalModeSettings>
And this code:
xamTilesControl1.NormalModeSettings.ShouldAnimate = false;
Before you change your ItemsSource which will cancel the animation. Please let me know if you need further clarifications on this matter.
Looking Forward for your reply.