ビューのデータコンテキストとしてクラスThisClassShouldBeTheDataContextのインスタンスを指定します
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;}
}
テキストボックスにバインドするにはどうすればよいContact["John"].PhoneNumber
ですか?
<TextBox Text="{Binding ?????}" />