Completed
Last Updated: 03 Jul 2017 12:27 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 27 Jun 2017 11:22
Category: MultiColumnCombo
Type: Bug Report
4
FIX. RadMultiColumnComboBox - arrow image moves to the bottom a few pixels in Windows8 theme after disable/enable operation
To reproduce: please refer to the attached sample project and refer to the screenshot. You will notice that initially, the arrow is a few pixels up. If you disable and then enable the RadMultiColumnComboBox again you will notice the difference.
Workaround:

        private void radToggleButton1_ToggleStateChanged(object sender, Telerik.WinControls.UI.StateChangedEventArgs args)
        {
            ImagePrimitive img = this.radMultiColumnComboBox1.MultiColumnComboBoxElement.ArrowButton.FindDescendant<ImagePrimitive>();
            img.Margin = new Padding(0);
            if (args.ToggleState == Telerik.WinControls.Enumerations.ToggleState.On)
            {
                this.radMultiColumnComboBox1.Enabled = true;
                this.radMultiColumnComboBox1.MultiColumnComboBoxElement.ArrowButton.Padding = new Padding(0);
            }
            else
            {
                this.radMultiColumnComboBox1.Enabled = false; 
            }
        }
0 comments