如何将 Indexed 属性绑定到 WPF 中的控件

发布于 2024-08-09 16:57:06 字数 650 浏览 7 评论 0原文

给定 ThisClassShouldBeTheDataContext 类的实例作为视图的 Datacontext

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 ?????}" />

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 ?????}" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叶落知秋 2024-08-16 16:57:06

索引器表示法与 C# 基本相同:

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

请参阅 约束性声明概述> MSDN 中的绑定路径语法 了解更多信息。

当然,这不适用于任意数据类型......

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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文