Completed
Last Updated: 22 Jul 2019 11:18 by ADMIN
Release Lib 2019.2.722 (07/22/2019)
Martin Ivanov
Created on: 03 Jul 2019 11:57
Category: ComboBox
Type: Bug Report
1
ComboBox: The selected content of the control gets clipped

If the height of RadComboBox is set to a value smaller than 26px (in Office2013) then the content of the RadToggleButton presenting the selected content is clipped.

This was reproduced with the Office2013 theme.

To work this around set the MinHeight of the child RadToggleButton to the same MinHeight as RadComboBox.

private void RadComboBox_Loaded(object sender, RoutedEventArgs e)
{
    var comboBox = (RadComboBox)sender;
    var toggle = comboBox.FindChildByType<RadToggleButton>();
    toggle.MinHeight = comboBox.MinHeight;
}

 

0 comments