26

ビューのデータコンテキストとしてクラス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 ?????}" />
4

1 に答える 1

37

インデクサーの表記は基本的に C# と同じです。

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

詳細については、MSDN のバインディング宣言の概要 > バインディング パス構文を参照してください。

もちろん、これは任意のデータ型では機能しません...

于 2009-11-04T02:27:59.630 に答える