2017-11-03 62 views

回答

0

试试这个到ContentPage

<Grid RowSpacing="0"> 
     <Grid.RowDefinitions> 
      <RowDefinition Height="Auto"/> 
      <RowDefinition Height="*"/> 
     </Grid.RowDefinitions> 

     <!-- header content --> 
     <StackLayout BackgroundColor="WhiteSmoke"> 
      <Label HorizontalOptions="End" Text="8 hours ago" VerticalOptions="Center" FontSize="Large" FontAttributes="Bold"/> 
     </StackLayout> 

     <!-- body content --> 
     <StackLayout Grid.Row="1"> 
      <Image Source="xamarin.png" Aspect="AspectFill"/> 
     </StackLayout> 
     <!-- profile image --> 
     <Image Source="usermale.png" 
       VerticalOptions="End" HorizontalOptions="Start" 
       HeightRequest="100" WidthRequest="100" 
       TranslationY="50"/> 
</Grid> 

宥会得到这样的:

enter image description here