Say I have a collection of phone numbers:

phonenumbers.add(new phonenumber("mobile", "1234"));
phonenumbers.add(new phonenumber("home", "5678"));

If I have 2 text boxes, txtMobile and txtHome, how do I bind each phone number to the individual text boxes?

Thanks!

link|improve this question
feedback

2 Answers

You can index your bindings in WPF. Try this:

<TextBox Text="{Binding phonenumbers[0]}" />
<TextBox Text="{Binding phonenumbers[1]}" />
link|improve this answer
Thanks. My source is actually a LINQ class, Member.PhoneNumbers. Each member can have at most 3 types of phone number types. I want to be able bind each text box to each type of phone number? Something like Text="{Binding Member.PhoneNumbers["Mobile"]}". Is it possible? Any other way of achieving it? – JCRA Nov 17 '10 at 23:54
I believe that an indexer can be of any type. Try Text="{Binding Member.PhoneNumbers['Mobile']}" – Matt Hamilton Nov 18 '10 at 0:12
I tried it. Unfortunately, it doesn't work. I hope you have other suggestions. – JCRA Nov 18 '10 at 15:07
It didn't? Is your PhoneNumbers collection a property on the class rather than a field? Did you remember the single quotes? – Matt Hamilton Nov 18 '10 at 19:59
feedback

You can bind to indicies.

Text={Binding phonenumbers[0]}

Otherwise create individual properties for the phone numbers and bind to them.

link|improve this answer
Thanks! Please see my comment to Matt Hamilton. I hope you can help me. – JCRA Nov 18 '10 at 15:08
feedback

Your Answer

 
or
required, but never shown

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