I've got define a custom control which inherits from Windows ComboBox. It works fine with a bindingsource which is assigned to property "SelectedValue" (ComboBox.DataBindings.Add("SelectedValue", BindingSourceChld, bindFieldName)So far, so good but now I wanted to have the infragistics style in my custom Combo Box thus I change the Inherit type from System.Windows.Forms.ComboBox to Infragistics.Win.UltraWinEditors.UltraComboEditor.Now I don't have a "SelectedValue" property and no SelectedIndexChanged Event as well.What are the allocated Infragistics Properties/Events for that issue ?Or what is the typical why to define a bindingsource for Infragisitcs UltraComboEditor?
thx in advance
Frank Mainzer
WinComboEditor has a Value property that is analagous to the ComboBox.SelectedValue property. To represent the SelectedIndexChanged event, you can listen to the ValueChanged event.
Is that true for the WinCombo control too??
Yes.