根据您的评论,您只想在从 API 加载数据时显示忙碌指示符。您没有发布您的用户界面,但我希望您了解如何使用以下内容:<Grid> <YOUR-UI> ..... ......... </YOUR-UI> <ActivityIndicator VerticalOptions="Center" IsVisible="{Binding IsBusy}" IsRunning="{Binding IsBusy}"/></Grid>在您的 ViewModel 中,添加 IsBusy 属性,如下所示:private bool _isBusy;public bool IsBusy{ get{return _isBusy;} set { _isBusy=value; RaisePropertyChanged(); }}然后,当您调用 API 加载数据时,请执行以下操作:public async void LoadDataFromApi(){ IsBusy=true; //Show the Indicator var response= await YourService.Method(); //this is where you calling your api //do other stuffs if you need to do; IsBusy=false; //Hide the Indicator}如果您需要更多帮助,请告诉我。