when adding entry to the page a margin is added. The space between the Entry and other controls is significant:
this is a sample xaml:
<VerticalStackLayout>
<telerik:RadEntry x:Name="entry" Placeholder="telerik entry" BackgroundColor="AntiqueWhite" />
<telerik:RadEntry x:Name="myentry" Placeholder="telerik entry" BackgroundColor="AntiqueWhite" />
<Entry Placeholder="maui entry" BackgroundColor="LightBlue"/>
<Entry Placeholder="maui entry" BackgroundColor="LightBlue"/>
</VerticalStackLayout>
this is the result:
When collapsing all groups, the footer still keeps bottom position and does not align with the groups.
In RadListView, the footer is aligned to the groups when they are collapsed. Please provide such option for the CollectionView.
Text is not centered horizontally on WinUI.
on maui 9.0.50 text is not visible and hiding the ClearButton does not work
on maui 9.0.40 text is not centered but hiding the ClearButton works
When setting horizontal text alignment to center, the text in Telerik Entry is not centered. In MAUI entry works.
<ContentPage.Resources>
<ResourceDictionary>
<Style TargetType="telerik:RadEntry" x:Key="entry">
<Setter Property="HeightRequest" Value="{OnPlatform WinUI=36,Android=40}"/>
<Setter Property="WidthRequest" Value="{OnPlatform WinUI=40,Android=40}"/>
<Setter Property="MinimumWidthRequest" Value="{OnPlatform WinUI=0,Android=10}"/>
<Setter Property="MaxLength" Value="2"/>
<Setter Property="FontSize" Value="15"/>
<Setter Property="Margin" Value="0,0"/>
<Setter Property="HorizontalTextAlignment" Value="Center"/>
<Setter Property="VerticalTextAlignment" Value="Center"/>
<Setter Property="HorizontalOptions" Value="Center"/>
</Style>
<Style TargetType="Entry" x:Key="mystyle">
<Setter Property="HeightRequest" Value="{OnPlatform WinUI=36,Android=40}"/>
<Setter Property="WidthRequest" Value="{OnPlatform WinUI=40,Android=40}"/>
<Setter Property="MinimumWidthRequest" Value="{OnPlatform WinUI=0,Android=10}"/>
<Setter Property="MaxLength" Value="2"/>
<Setter Property="FontSize" Value="15"/>
<Setter Property="Margin" Value="0,0"/>
<Setter Property="HorizontalTextAlignment" Value="Center"/>
<Setter Property="VerticalTextAlignment" Value="Center"/>
<Setter Property="HorizontalOptions" Value="Center"/>
</Style>
</ResourceDictionary>
</ContentPage.Resources>
<VerticalStackLayout Spacing="10">
<Entry Text="99" Style="{StaticResource mystyle}"/>
<telerik:RadEntry Text="99" x:Name="entry" Style="{StaticResource entry}"
ClearButtonVisibility="Never" />
</VerticalStackLayout>
Provide a built it way to notify the parent group when the items in the nested groups are changed.
For example, there is no PropertyChanged or CollectionChanged notification that we can hook in to in order to detect updates in parent group headers when the count changes in a subgroup. Only the leaf group headers get updated, but not the parents.
When using the app in dark mode and using crop mode in Image Editor, the OK/Cancel icons are displayed in the wrong color and are difficult to see.
I don't know if and how this can be customized—the documentation doesn't really help me. There are a few points about this without any further information.
Please help if it's customizable.
Maybe I'm just blind, then sorry
.NET MAUI ImageEditor Documentation - Toolbar Styling - Telerik UI for .NET MAUI