This is a migrated thread and some comments may be shown as answers.

Mouse Busy

1 Answer 63 Views
BusyIndicator
This is a migrated thread and some comments may be shown as answers.
Roger
Top achievements
Rank 1
Roger asked on 04 Aug 2011, 03:28 AM
I want that the mouse pointer can't click any if the application is busy.

How would I implement it?


thanks..

1 Answer, 1 is accepted

Sort by
0
Pana
Telerik team
answered on 05 Aug 2011, 10:20 AM
Hello Roger,

You could use the RadBusyIndicator. It is a ContentControl so you can put it on your MainPage and wrap all the content inside (for example put the LayoutRoot Grid inside the RadBusyIndicator so it could be set as content) and when you set the IsBusy = false all the controls within will show disabled and will not be clickable. Nice notification and overlay will appear indicating that you application is doing some work on the background and when you are ready set the IsBusy to false.

Remember the most important part is to have:
<telerik:RadBusyIndicator IsBusy="True">
    <Grid>
         <Control1.. />
         <Control2.. />
         <Control3.. />
    </Grid>
</telerik:RadBusyIndicator>


The RadBusy indicator documentation is here.
You could also search for the RadBusyIndicator on your examples site.

Best wishes,
Pana
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>
Tags
BusyIndicator
Asked by
Roger
Top achievements
Rank 1
Answers by
Pana
Telerik team
Share this question
or