vote up 1 vote down star
1

Hi All,

I want to add complex databinding to my custom winforms control. So I can do the following:

myControl.DisplayMember = "Name";
myControl.ValueMember = "Name";
myControl.DataSource = new List<someObject>();

does anyone know what interfaces etc have to be implemented to achieve this?

I've had a look into it and all I can find is IBindableComponent, but that seems to be for Simple Binding rather than Complex Binding.

flag

64% accept rate

1 Answer

vote up 1 vote down

Try this or this

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.