c# - Image in front off text? -


so code image on text, how image in front of text?

<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> 

<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> 

Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -