I have a report viewer in WPF, I'd like to show the user some feedback when changing pages (on a slow pc this can take 4-8 seconds).
I have bound to the "IsInProgress" property, but nothing happens.
I suspect that Telerik is not realeasing the UI thread for the progressbar to appear.
Any ideas?
I have bound to the "IsInProgress" property, but nothing happens.
<controls:CircularProgressBar Message=
"{Binding ProgressMessage}"
>
<controls:CircularProgressBar.Visibility>
<Binding Path=
"IsInProgress"
>
<Binding.Converter>
<telerikViewer:VisibilityConverter/>
</Binding.Converter>
</Binding>
</controls:CircularProgressBar.Visibility>
</controls:CircularProgressBar>
I suspect that Telerik is not realeasing the UI thread for the progressbar to appear.
Any ideas?