But If I put this inside the event handler for item appearing to make it dinamically reload:
private void listview_allAds_FlowItemAppearing(object sender, ItemVisibilityEventArgs e)
{
TinyAd current = e.Item as TinyAd;
if (current == contentOfListView[contentOfListView.Count-1])
{
LoadMoreAds();
}
}
The items that are already inside the observable collection flicker badly for a few frames until the reload is done. then they are fine until the next reload happens.
I reload items from a simple function.
If I call the reload function statically,
EG:
Everything works fine.
But If I put this inside the event handler for item appearing to make it dinamically reload:
The items that are already inside the observable collection flicker badly for a few frames until the reload is done. then they are fine until the next reload happens.
THis is my list:
Has anyone experienced a similiar issue?