Hey Guys,
I am using the Q2 2011 controls, and I can't seem to get determinate progress to work. I think I am doing everything I need to according to the docs, but the UI still looks exactly like the indeterminate state.
The result of the code below is shown in the attached screenshot. I was expecting the middle fill to be at 50%, but the value of ProgressValue seems to make no difference.
Any idea what I am missing? Is this a bug or a regression of some sort?
Thanks,
Mark
I am using the Q2 2011 controls, and I can't seem to get determinate progress to work. I think I am doing everything I need to according to the docs, but the UI still looks exactly like the indeterminate state.
The result of the code below is shown in the attached screenshot. I was expecting the middle fill to be at 50%, but the value of ProgressValue seems to make no difference.
Any idea what I am missing? Is this a bug or a regression of some sort?
Thanks,
Mark
<Window x:Class="BusyIndicatorTest.MainWindow" xmlns:Controls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls" Title="MainWindow" Height="350" Width="525"> <Grid> <Controls:RadBusyIndicator IsBusy="True" IsIndeterminate="False" ProgressValue="50.0"> <ListBox> <ListBoxItem Content="Some Content 1"/> <ListBoxItem Content="Some Content 2"/> </ListBox> </Controls:RadBusyIndicator> </Grid> </Window>