Can someone clarify if the page is visible during the OnNavigatedTo event? The documentation for it does not mention page visibility:
MSDN OnNavigatedTo
I see that the entire sample code refreshes the page (loading the source data or reload status after the add-in).
I want to make sure that I do not want the user to see any flickering or partial data when the page state is set.
Update: . Ah, I think he is hidden. If I add a delay of 10 seconds to the OnNavigatedTo () call, I will not see the page until 10 seconds:
System.Threading.Thread.Sleep(10000);
When the application starts, I see a splash screen for 10 seconds. When I receive activation, I see a black screen for 10 seconds, then my updated page comes in. Not definitely, but it looks like it's hidden.
source
share