This is a migrated thread and some comments may be shown as answers.

set backcountent start to flip

2 Answers 17 Views
HubTile
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Alessio
Top achievements
Rank 1
Alessio asked on 18 Feb 2014, 05:20 PM
Hi,

if i set the backcontent of tile it start to flip immediatly. I wanna delay some second so the user can see also the first side of tile.
How can i do?

Tnx in advance

2 Answers, 1 is accepted

Sort by
0
Accepted
Todor
Telerik team
answered on 21 Feb 2014, 01:41 PM
Hello Alessio,

Thank you for your question.

Indeed, when you set the BackContent the tile is flipped immediately. The solution is to set the content later, when you are ready to flip the tile. For example:

this.Dispatcher.BeginInvoke(() =>
    {
        Thread.Sleep(2000);
        tile.BackContent = "content";
    });

I hope this information helps.

Regards,
Todor
Telerik
If you want to get updates on new releases, tips and tricks and sneak peek previews directly from the developers working on the UI for Windows Phone, subscribe to the blog feed now.
0
Alessio
Top achievements
Rank 1
answered on 21 Feb 2014, 01:42 PM
Tnx for your suggestion!!!
Tags
HubTile
Asked by
Alessio
Top achievements
Rank 1
Answers by
Todor
Telerik team
Alessio
Top achievements
Rank 1
Share this question
or