Currently I add whenever possible the following two functions at the start resp. end of a function. This approach is cumbersome and doesnt always work, because sometimes I get a wrong thread error regardless if it is an async method or not...
public void ShowBusyIndicator()
{
BusyIndicator.Visibility = Visibility.Visible;
}
public void HideBusyIndicator()
{
BusyIndicator.Visibility = Visibility.Collapsed;
}thus i was wondering, if it wasn't possible to listen somehow if the addin is currently busy. I found https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic10430.html this property. now I'm wondering, if it can be used to listen to it and to show or collapse my busyindicator. any help would be appriciated.