如何在Xamarin.Forms中显示加载消息

Atu*_*uka 1 xaml xamarin.forms

我是Xamarin.Forms的新手,我需要加载消息,我可以显示加载消息,请帮助我

码:-

<AbsoluteLayout>
  <StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" AbsoluteLayout.LayoutBounds="0, 0, 1, 1"
  AbsoluteLayout.LayoutFlags="All" Padding="30" >
  <Grid>
   //something
  </Grid>
  </StackLayout>
  <ContentView x:Name="overlay" AbsoluteLayout.LayoutBounds="0, 0, 1, 1"  AbsoluteLayout.LayoutFlags="All" IsVisible="False" BackgroundColor="#C0808080" Padding="10, 0">
    <ActivityIndicator  WidthRequest="110" HeightRequest="70" IsRunning="True" IsVisible="True" Color="Black" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand"/>
  </ContentView>
</AbsoluteLayout>
Run Code Online (Sandbox Code Playgroud)

Thanx提前

干杯

Den*_*nis 6

IsVisible="True"为ContentView 设置将显示ActivityIndi​​cator.

<ContentView x:Name="overlay" AbsoluteLayout.LayoutBounds="0, 0, 1, 1"  AbsoluteLayout.LayoutFlags="All" IsVisible="True" BackgroundColor="#C0808080" Padding="10, 0">
    <ActivityIndicator  WidthRequest="110" HeightRequest="70" IsRunning="True" IsVisible="True" Color="Black" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand"/>
  </ContentView>
Run Code Online (Sandbox Code Playgroud)