<sfPopup:SfPopupLayout.PopupView>
<sfPopup:PopupView AnimationMode="Zoom" AppearanceMode="TwoButton" AcceptButtonText="Guardar" DeclineButtonText="Cancelar">
<sfPopup:PopupView.ContentTemplate>
<DataTemplate>
<ScrollView>
<StackLayout BackgroundColor="#F5F6F6">
<Frame x:Name="frame1" CornerRadius="7" Margin="10,10,10,0">
<Grid>
<Label Grid.Column="0" Grid.Row="0" Text="Text1" HorizontalTextAlignment="Center" VerticalTextAlignment="Center" TextColor="Black" FontAttributes="Bold"/>
<Label Grid.Column="1" Grid.Row="0" Text="Text2" HorizontalTextAlignment="Center" VerticalTextAlignment="Center" TextColor="Black" FontAttributes="Bold"/>
<Label Grid.Column="2" Grid.Row="0" Text="Text3" HorizontalTextAlignment="Center" VerticalTextAlignment="Center" TextColor="Black" FontAttributes="Bold"/>
<Label Grid.Column="0" Grid.Row="1" x:Name="txt_1" Text="{Binding Text1}" HorizontalTextAlignment="Center" VerticalTextAlignment="Center" TextColor="Black" FontAttributes="Bold"/>
<Label Grid.Column="1" Grid.Row="1" Text="{Binding Text2}" HorizontalTextAlignment="Center" VerticalTextAlignment="Center" TextColor="Black" FontAttributes="Bold"/>
<Label Grid.Column="2" Grid.Row="1" Text="{Binding Text3}" HorizontalTextAlignment="Center" VerticalTextAlignment="Center" TextColor="Black" FontAttributes="Bold"/>
</Grid>
</Frame>
</StackLayout>
</ScrollView>
</DataTemplate>
</sfPopup:PopupView.ContentTemplate>
</sfPopup:PopupView>
</sfPopup:SfPopupLayout.PopupView>