Hi,
I have a wpf project and I create a semi-transparent balck UserControl with a RadBusyIndicatror to indicate to my users that a synch job is being in progress.
The problem is when the job start, it's look like the job pulling all resources from the cpu and the RadBusyIndcator don't have enough cpu resources to show his fluid animation. The animation start, stop, start, stop, start, stop and so on...
code example:
BusyControl busyControl = new BusyControl();
busyControl.Start("Job in progress. Please wait...");
SynchroneJob();
busyControl.Stop();
Thank's
I have a wpf project and I create a semi-transparent balck UserControl with a RadBusyIndicatror to indicate to my users that a synch job is being in progress.
The problem is when the job start, it's look like the job pulling all resources from the cpu and the RadBusyIndcator don't have enough cpu resources to show his fluid animation. The animation start, stop, start, stop, start, stop and so on...
code example:
BusyControl busyControl = new BusyControl();
busyControl.Start("Job in progress. Please wait...");
SynchroneJob();
busyControl.Stop();
Thank's