vote up 0 vote down star

Given an instance of the class ThisClassShouldBeTheDataContext as the Datacontext for the view

class ThisClassShouldBeTheDataContext
{
  public Contacts Contacts {get;set;}
}

class Contacts
{
  public IEnumerable<Person> Persons {get;set;}
  public Person this[string Name]
  {
    get 
    {
      var p = from i in Persons where i.Name = Name select i;
      return p.First();
    }    
  }
}

class Person
{
  public string Name {get;set;}
  public string PhoneNumber {get;set;}
}

How can I bind Contact["John"].PhoneNumber to a textbox?

<TextBox Text="{Binding ?????}" />
flag

1 Answer

vote up 2 vote down check

The indexer notation is basically the same as C#:

<TextBox Text="{Binding Contacts[John].PhoneNumber}" />

See Binding Declarations Overview > Binding Path Syntax in MSDN for more info.

This won't, of course, work for arbitrary data types...

link|flag
What if my index is not a string, or it's from another property from the vm, say {Binding Contacts[ThisIsAnotherPropertyFromTheVm].PhoneNumber}. How can I do that? – Lawrence A. Contreras Nov 13 at 10:30

Your Answer

Get an OpenID
or

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