BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hi,
I program a wpf app and use a community license. I use several SfMultiColumnDropDownControl contols in one window. I'm trying to focus on a combo box like that, but it does not work. For example: comboBox.Focus () does not work. Can you help me?
var textBox = this.comboBox1.GetType().GetProperty("Editor", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance).GetValue(this.comboBox1);
if (textBox != null && textBox is TextBox)
(textBox as TextBox).Focus(); |