I\'m trying to put a label inside of my image, I couldn\'t use a Margin
property, because some reason it\'s not working, untill now I have this :
And wh
You need a Grid
instead of a StackLayout
(notice how both the Label
and the Image
are in the same row and column):
Because the Label
is listed beneath the Image
in the XAML code above, the Label
will be drawn on top of the Image
.
You also could have used an AbsoluteLayout
, which is another layout that is good at layering things.