在 C# 中将 UIElements 数组绑定到 Observalble 集合

发布于 2024-11-30 22:08:22 字数 290 浏览 0 评论 0原文

我需要将一系列文本块(将由后面的代码创建)绑定到某些用户定义类型的可观察集合,以便每个文本块将具有 ObsColl 项的一个唯一元素。

公共类车 { 私有字符串_make;

    public Car(string make)
    {
        _make = make;            
    } 
}

现在我需要创建此类的 Observable 集合,并且需要创建 Textblock 数组。 Text 属性将是 Car.Make

I need to bind an arry of textblocks(which will be created by code behind) to an Observable Collection of some User Defined Type, so that each textblock will have one and unique element of ObsColl item.

public class Car
{
private string _make;

    public Car(string make)
    {
        _make = make;            
    } 
}

Now i need to create an Observable collection of this class and need to create an array of Textblocks. Text property of will be Car.Make

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

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

发布评论

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

评论(1

ぇ气 2024-12-07 22:08:22

您可以设置 ListBox 样式来显示 Cars 的 ObservableCollection,然后还获取每个 Car.Make 的文本。

这是一个示例: http://3water.wordpress.com/2010 /07/25/listbox-on-wp7/

You can style a ListBox to show the ObservableCollection of Cars and then also get the text for each Car.Make.

Here is an example: http://3water.wordpress.com/2010/07/25/listbox-on-wp7/

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