Hi,
I am having a widows store app running in Windows 8.1. In that, I am doing some server communication. the process step is as below
Before starting server communication, i show a loading screen by showing a UI with Progress ring in a popup.
Disable the Corewindow's input as below to avoid any interaction in UI.
Window.Current.CoreWindow.IsInputEnabled = false
Start the function which talks to server. [Which takes maximum 15 seconds to 25 seconds]
Once get the response from server, i close the popup
I enable the Corewindow's input as below for enabling app's interaction
await Task.Delay(TimeSpan.FromSeconds(0.1)); Window.Current.CoreWindow.IsInputEnabled = true; await Task.Delay(TimeSpan.FromSeconds(0.1));
When the app showing, i am just touching the loading screen continuously. now app crashes and eventlog says that it is as App Hang.
How to solve this?
anyone please give me solution..
Thanks.