Silverlight ProgressBar issues with Binding
- by Chris Skardon
The ProgressBar pretty much does what it says on the tin, displays progress, in a bar form (well, by default anyhow). It’s pretty simple to use: <ProgressBar Minimum="0" Maximum="100" Value="50"/>
Gives you a progress bar with 50% of it filled:
Easy! But of course, we’re wanting to use binding to change the value, again, pretty easy,…