To set a background image for a Border, you can use an Image element as the content within the Border. Here’s an example:
XAML:
<Border x:Name="border1" Stroke="Black" Padding="0" WidthRequest="200" HeightRequest="100">
<Image Source="dotnet_bot.png" Aspect="Center"/>
</Border>
Share with