When I try to change the background image on a button click, the image is not changed
<telerik:RadButton Grid.Row="6" BackgroundImage="image.png" VerticalOptions="Center" HorizontalOptions="Center" WidthRequest="100" HeightRequest="100" Clicked="RadButton_Clicked"/>
private void RadButton_Clicked(object sender, EventArgs e)
{
(sender as Telerik.Maui.Controls.RadButton).BackgroundImage = "image2.png";
}