c# - Windows phone 8 design consideration -
i creating app want display rectangles display image @ background , overlay can display text on top of image. see attached image (mock up)
so easiest approach achieve desired layout?
- canvas
- rectangle imagestroke
i did 1 day that:
<grid> <grid.rowdefinitions> <rowdefinition height="*" /> <rowdefinition height="auto" /> </grid.rowdefinitions> <image grid.rowspan="2"> <textblock grid.row="1" verticalalignement="bottom"/> </grid>
with code text should @ bottom of image.
Comments
Post a Comment