I would like to show the progress by using progress bar when load data in to xamwebgrid from webservices, can you help me, if anyone have the code or idea?
The silverlight toolkit has a busy indicator that you can throw over top a xamwebgrid
Hi Devin,
Thank you for your response. Do you have any example code for this? I am new for this control. If you provide me the code, that is more helpful.
Thank you
What I usually do is create a storyboard that toggles the visibility of a UI element that overlays the grid, and throw an animation on that.
Then, since the web service calls happen async anyways, I just call the storyboards Begin() when I invoke the web service call and stop the animation in the service call completed event handler.
Devin