Completed
Last Updated: 02 Feb 2023 09:36 by ADMIN
Release R1 2023
Brian
Created on: 29 Aug 2022 09:15
Category: UI for WinForms
Type: Bug Report
0
RadToggleSwitch: SetToggleState method does not update UI without animation

To reproduce the issue, just drag a RadToggleSwitch to the form. Then, at run time call the method:

radToggleSwitch1.SetToggleState(newValue: false, animate: false);

You will notice that the colors are changed but the thumb is not moved: 

Workaround:

            this.radToggleSwitch1.AllowAnimation = false;
            this.radToggleSwitch1.Toggle();

0 comments