Hi - I got everything working fine except 1 piece with updating the status text in the textblock tag.
I use PropertyChanged event to set the value for the progressbar successfully. When I try to do the same for the textblock Text property, it never updates.
<TextBlock Text="{Binding BusyText}" /> //this doesnt work
<ProgressBar Value="{Binding value}" Height="15"/> // this works fine
I used the example from below link to update the property for the ProgressBar.
http://social.msdn.microsoft.com/Forums/silverlight/en-US/8b77e36f-2137-4072-9a66-540301f2a6ea/progressbar-on-busyindicator-doesnt-update-when-value-changes?forum=silverlightcontrols
↧