I binded an UltraComboEditor to a List<string> via UltraComboEditor 's DataSource property.
When an item is selcted in the UltraComboEditor the corresponding List's Current property points to null. It should point to the selected item in the list.
Is there some otherUltraComboEditor property that should be used to so the Current property is updated? ;
Hello,
Could you please try the following line:
this.ultraComboEditor1.SyncWithCurrencyManager = true;
Please do not hesitate to contact us if you need any additional assistance.
Ok thanks. WPF has an attribute setting as well for Sychronization with the IEnumerator's Current Property.