I'm having an issue with the RadMultiColumnComboBox where it accepts returns, so it grows the field when it shouldn't. I tried this but it had no effect:
private void MultiColumnComboBox_Loaded(object sender, RoutedEventArgs e)
{
var textBox = MultiColumnComboBox.FindChildByType<TextBox>();
if (textBox != null)
{
textBox.AcceptsReturn = false;
textBox.AcceptsTab = false;
}
}
Hello Shawn,
I tried reproducing this behavior, however, I was unsuccessful. On my end, the result from the image is not present.
I attached the sample project, so, would it be possible to give it a try and let me know if I am missing something of importance?
Hello Shawn,
Please let me know if you manage to isolate this behavior. I will be more than happy to review it on my side and share more information on this based on your setup.