I have some images that I want to display with a watermark.
They are currently inside the stack panel as follows:
<StackPanel Orientation="Vertical"
Margin= "7,0,0,0"
HorizontalAlignment="Center" >
<Image Width="60"
Height="72"
VerticalAlignment="Top"
Margin="0 0 10 0"
Source="{Binding ImageToWatermark}" />
What kind of xaml would I use to place centered text over the image?
For example, to display London above the image of the city with this font "Segoe Keycaps".

source
share