To reproduce:
1. Run the form with RadMultiColumnCombobox on high dpi.
2. Set SelectedIndex to -1 (no value selected initially)
3. As a result, the first value get displayed in the text area.
Hello, Connor,
You are right, please excuse me for this. You can use a Boolean variable to workaround it:
bool Bool;
private void RadMultiColumnComboBox1_TextChanged(object sender, EventArgs e)
{
if (!Bool)
{
this.radMultiColumnComboBox1.SelectedIndex = -1;
}
Bool = true;
}
Regards,
Nadya | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Hi, Conor,
Currently, you can use the following workaround:
private void RadMultiColumnComboBox1_TextChanged(object sender, EventArgs e)
{
this.radMultiColumnComboBox1.SelectedIndex = -1;
}
Regards,
Nadya | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.