Progress bar on loading a page
-
Hi, In my silverlight application I've many pages(1,2,3...), after logged in i'm showing default page. After that if i click on any page default loading (silverlight progress like rotating a default logo with continual increment of time) is going on. Next if i click on the any other page of same page that silverlight progress is not showing. My silverlight pages have huge data, so for loading the data it takes time to show any page without showing any progress. I need to show any progress bar on loading the data.... is it possible to show the progress bar in all pages while loading? Regards, Ravi Vellanki.
-
Hi, In my silverlight application I've many pages(1,2,3...), after logged in i'm showing default page. After that if i click on any page default loading (silverlight progress like rotating a default logo with continual increment of time) is going on. Next if i click on the any other page of same page that silverlight progress is not showing. My silverlight pages have huge data, so for loading the data it takes time to show any page without showing any progress. I need to show any progress bar on loading the data.... is it possible to show the progress bar in all pages while loading? Regards, Ravi Vellanki.
ravi.vellanky wrote:
is it possible to show the progress bar in all pages while loading?
Yes.
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
ravi.vellanky wrote:
is it possible to show the progress bar in all pages while loading?
Yes.
Mark Salsbery Microsoft MVP - Visual C++ :java:
Can you tell me how can i achieve this?
-
Can you tell me how can i achieve this?
What part are you having trouble with? Data loading is asynchronous in Silverlight so you can display a progress control at the start of the download and remove the progress control when the download completes.
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
What part are you having trouble with? Data loading is asynchronous in Silverlight so you can display a progress control at the start of the download and remove the progress control when the download completes.
Mark Salsbery Microsoft MVP - Visual C++ :java:
Can you give me any sample application link on this progress bar?
-
Can you give me any sample application link on this progress bar?
Have you looked at the documentation? ProgressBar Class[^] 1) Before you request data, show a ProgressBar. 2) If you're using a data retrieval method that reports download status, update the ProgressBar. If no download status is available, you could set the ProgressBar's IsIndeterminate property to True. 3) When the data is received, hide and/or remove the ProgressBar. Again - what part are you having trouble with?
Mark Salsbery Microsoft MVP - Visual C++ :java: