On a simple project with Telerik installed, I can change the FontSize on a simple standard label and Hot Reload works. If I try to change the FontSize on a column in a ListView (in another project), Hot Reload does not work. Settings in Tools\Options all appear to be the same between the projects. Screen Print attached.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
xmlns:viewModels="clr-namespace:peMove.Maui.LookupViewModels"
x:Class="peMove.Maui.Pages.MainPage">
<telerik:RadListView x:Name="listView" ItemsSource="{Binding Source}" MinimumWidthRequest="100" >
<telerik:RadListView.BindingContext>
<viewModels:ViewModel_L />
</telerik:RadListView.BindingContext>
<telerik:RadListView.ItemTemplate>
<DataTemplate>
<telerik:ListViewTemplateCell>
<telerik:ListViewTemplateCell.View>
<telerik:RadBorder x:Name="border01" BorderThickness="0, 0, 0, 1"
BackgroundColor="White"
BorderColor="#b1b1b1">
<Grid RowDefinitions="Auto"
ColumnSpacing="5"
ColumnDefinitions="Auto,*,Auto" Margin="10,10">
<!--Column 1: Icon-->
<telerik:RadBorder x:Name="border02"
Grid.Column="0"
CornerRadius="20"
WidthRequest="40"
VerticalOptions="Center"
HorizontalOptions="Center"
BackgroundColor="{Binding Color}"
Padding="12,6"
Margin="10"
HeightRequest="40">
<Label FontSize="20"
Text="{Binding TypeShort}"
TextColor="#FFFFFFDE"
VerticalOptions="Center"
HorizontalOptions="Center"/>
</telerik:RadBorder>
<!--Column 2: Data-->
<VerticalStackLayout Grid.Column="1"
Spacing="3"
Margin="0,6,0,6"
VerticalOptions="Center">
<Label Text="{Binding Id}"
VerticalOptions="Center"
HorizontalOptions="Start"
FontSize="14"
FontAttributes="Bold"
TextColor="Black"/>
<Label Text="{Binding Name}"
HorizontalOptions="Start"
VerticalOptions="Start"
TextColor="{AppThemeBinding Light='#99000000'}"
FontSize="16"/>
<Label Text="{Binding Status}"
HorizontalOptions="Start"
VerticalOptions="Start"
TextColor="Black"
FontSize="10"/>
</VerticalStackLayout>
<!--Column 3: Quantity-->
<Label Grid.Column="2"
Text="{Binding Quantity, StringFormat='{0:F2}'}"
HorizontalOptions="Start"
VerticalOptions="Start"
TextColor="{AppThemeBinding Light='#7E7E7E'}"
FontSize="16"/>
</Grid>
</telerik:RadBorder>
</telerik:ListViewTemplateCell.View>
</telerik:ListViewTemplateCell>
</DataTemplate>
</telerik:RadListView.ItemTemplate>
</telerik:RadListView>
</ContentPage>
So reading further about Hot Reload, it is suggested to rebuild the project. When I rebuild the project I now get XFC0000 Cannot resolve type "http:://schemas.telerik.com/2022/xaml/maui:telerik:RadBorder". I can still run the program in Debug mode which is weird. I have tried the fixes for this by using the x:Name and it is not resolving this error.