I want to turn off opacity animation when I set IsBusy = true;
How to achieve this?
The problem is that I don't use separate thread with my busyIndicator, and I don't want to use another threads.
When I put:
IsBusy = true;
//long process here
IsBusy = false;
The busy indicator don't appear. I think it may be caused by opacity animation.
How to achieve this?
The problem is that I don't use separate thread with my busyIndicator, and I don't want to use another threads.
When I put:
IsBusy = true;
//long process here
IsBusy = false;
The busy indicator don't appear. I think it may be caused by opacity animation.