问题
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 ?????}" />
回答1:
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...
来源:https://stackoverflow.com/questions/1671376/how-can-you-bind-an-indexed-property-to-a-control-in-wpf