Hi,
Starting at v3.1, you can override the CheckComboBox.UpdateText() method to display the text you want :
Get more controls, features, updates and technical support with Xceed Toolkit Plus for WPF
Starting at v3.1, you can override the CheckComboBox.UpdateText() method to display the text you want :
public class MyCheckComboBox : CheckComboBox
{
protected override void UpdateText()
{
if( this.SelectedItems.Count == this.Items.Count )
{
this.SetCurrentValue( MyCheckComboBox.TextProperty, "All Items are selected." );
}
else if( this.SelectedItems.Count <= 1 )
{
base.UpdateText();
}
else
{
this.SetCurrentValue( MyCheckComboBox.TextProperty, this.SelectedItems.Count + " items are selected." );
}
}
}――――
Get more controls, features, updates and technical support with Xceed Toolkit Plus for WPF