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
Post a Comment