In Development
Last Updated: 30 Apr 2024 10:30 by ADMIN
Holger
Created on: 16 Apr 2024 14:14
Category: ComboBox
Type: Feature Request
1
ComboBox: Disable the spell check option by default
The RadEntry control has IsSpellCheckEnabled property. Disable the spell check by default for the RadComboBox control
1 comment
ADMIN
Didi
Posted on: 16 Apr 2024 14:17

Solution:

Add implicit style to the page where the ComboBox is defined:

<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"
             x:Class="MauiApp5.MainPage">
    <ContentPage.Resources>
        <ResourceDictionary>
            <Style TargetType="telerik:RadEntry">
                <Setter Property="IsSpellCheckEnabled" Value="False"/>
            </Style>
        </ResourceDictionary>
    </ContentPage.Resources>
    <VerticalStackLayout>
        <telerik:RadComboBox ItemsSource="{Binding Items}" 
                 DisplayMemberPath="Name" x:Name="combo"/>

    </VerticalStackLayout>
</ContentPage>

 

Regards,
Didi
Progress Telerik

A brand new ThemeBuilder course was just added to the Virtual Classroom. The training course was designed to help you get started with ThemeBuilder for styling Telerik and Kendo UI components for your applications. You can check it out at https://learn.telerik.com