2017-08-21 4 views
0

このコードではイメージがテキスト上にありますが、イメージをテキストの前にどのように取得できますか?イメージの前にテキストがありますか?

<StackLayout Orientation="Vertical" BackgroundColor="DeepSkyBlue" > 
    <Image Source="{Binding Image}" /> 
    <Label Text="{Binding Name}" TextColor="Black" FontSize="Medium" /> 
    <Label Text="{Binding Tlfnr}" TextColor="Black" FontSize="Small" /> 
</StackLayout> 
+2

「テキストの前に」などの「テキストの上に」が同じではないですか? –

+0

https://gyazo.com/2abedde435bdddf0a1992ac7490565b5 number 2 image、thats私が望むもの –

答えて

0
<StackLayout Orientation="Horizontal" BackgroundColor="DeepSkyBlue" > 
    <Image Source="{Binding Image}" /> 
    <StackLayout Orientation="Vertical"> 
     <Label Text="{Binding Name}" TextColor="Black" FontSize="Medium" /> 
     <Label Text="{Binding Tlfnr}" TextColor="Black" FontSize="Small" /> 
    </StackLayout> 
</StackLayout> 
関連する問題