In Development
Last Updated: 15 Apr 2024 11:56 by ADMIN

Expose command that executes when checkbox state changes.

Currently I am using EventToCommandBehavior:

 

    <VerticalStackLayout>
        <telerik:RadCheckBox x:Name="checkbox">
            <telerik:RadCheckBox.Behaviors>
                <telerik:RadEventToCommandBehavior EventName="IsCheckedChanged" Command="{Binding CheckedCommand}" />
            </telerik:RadCheckBox.Behaviors>
        </telerik:RadCheckBox>
    </VerticalStackLayout>

 

 

public class ViewModel : NotifyPropertyChangedBase
{
    public ViewModel()
    {
        this.CheckedCommand = new Command<IsCheckedChangedEventArgs>(this.CheckBoxUserCommand);
    }

    private void CheckBoxUserCommand(IsCheckedChangedEventArgs obj)
    {
        // logic here:
    }

    public ICommand CheckedCommand { get; set; }  
}

 

 

 

Unplanned
Last Updated: 08 Apr 2024 18:48 by Shobana
Currently RadCheckBox follows the guidelines of the operating system, meaning that on iOS it is visualized as circle and on Android and Windows - as square.
Completed
Last Updated: 13 Mar 2024 08:21 by ADMIN
Release 6.8.0
The CheckBox renders a small checkmark when IsAnimated="False" but normal size if IsAnimated="True" on Windows. It's quite noticeable if If you scale up the Length to say 40, the checkbox scales up but the checkmark doesn't scale, leaving it weird looking.
Unplanned
Last Updated: 21 Aug 2023 14:59 by Glenn
Created by: Glenn
Comments: 0
Category: CheckBox
Type: Feature Request
1

Hi Team,

With CheckBoxes and RadioButtons, there is a concept of Button GroupName... where if belonging to a group, a selection is mutually exclusive to that group.

Here is the official docs from Microsoft for the same feature in WPF => https://learn.microsoft.com/en-us/dotnet/api/system.windows.controls.radiobutton.groupname?view=windowsdesktop-7.0 

Thank you,

Glenn

Completed
Last Updated: 07 Jun 2023 07:48 by ADMIN
Release 5.2.0
Created by: Victor
Comments: 0
Category: CheckBox
Type: Feature Request
2
Turn off the animations in the CheckBox control
Completed
Last Updated: 18 Oct 2022 14:27 by ADMIN
Release 3.1.0
Created by: Tinus
Comments: 0
Category: CheckBox
Type: Bug Report
1

When setting IsEnabled to False, the checkbox is still enabled (on Android) and can be checked.

<telerikPrimitives:RadCheckBox IsEnabled="False"/>

Completed
Last Updated: 14 Sep 2022 10:09 by ADMIN
Release 3.0.0
Created by: Larry
Comments: 1
Category: CheckBox
Type: Bug Report
0

RadCheckBox CheckedSymbolColor doesn't reflect the value on Windows. The default value is displayed instead.