views:

58

answers:

1

This has to be the simplest of all questions, but I can not seem to figure it out. I have the progress bar in place, how do I make it show progress. How do I start the thing?

<ProgressBar x:Name="ProgressUpload" Margin="5" IsIndeterminate="True" ></ProgressBar>
+2  A: 

If you set IsIndeterminate to True, the progress has the meaning that something is in progress but you cannot determine the exact duration. So, I can only tell you to set it to false and to use the progress bar in its "standard" behavior.

Maurizio Reginelli
The issue i am fighting is how do you get it to start that animation. I have the bar defined and is IsIndeterminate="True". How do I trigger the bar to do its thing?
The trick I was looking for is I had to set a Minimum Value and a Maximum Value and a height. Once I set these it displayed.