Silverlight 3 - TabControl 中的动态 TabItem

发布于 2024-07-25 02:16:02 字数 285 浏览 1 评论 0原文

我有一个 POCO(普通旧 CLR 对象)的 ObservableCollection,我想用选项卡式习惯用法来表示它。 最好使用 MVVM 模式,有没有办法将 TabItems 集合绑定到我的 POCO 集合的计数?

因此,在本例中,如果我的集合中有 3 个项目,我希望看到 3 个 TabItem。 每个 TabItem 将在同一位置包含相同的控件,每个控件都绑定到集合中相应对象的属性。

我只是在寻找我可能使用的方法的概述或示例的链接。 如果您需要更多信息,请随时询问。

谢谢。

I've got an ObservableCollection of POCOs (Plain old CLR Objects) that I want to represent in a tabbed idiom. Prefereably using the MVVM pattern, is there a way to bind the collection of TabItems to the count of my POCO collection?

So, in this case if there are 3 items in my collection, I'd like to see 3 TabItems. Each TabItem would contain the same controls in the same location, each control bound to properties of the appropriate object in the collection.

I'm just looking for an overview of the approach I might use or a link to an example. If you need more info, feel free to ask.

Thanks.

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

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

发布评论

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

评论(2

绝情姑娘 2024-08-01 02:16:02

我可能会创建一个 ObservableCollection,其中包含您的 POCO 项目。 然后,您可以将该 ObservableCollection 绑定到任何 Silverlight 项渲染控件。 您必须修改默认渲染模板才能创建选项卡...但是使用该方法,您的选项卡将不断更新集合中的项目,而无需在代码隐藏文件中放置任何代码。

更新

这是 Silverlight 论坛的链接,其中有人使用 ItemsControl 和示例 XAML 代码构建了 TabControl:

http://silverlight.net/forums/t/12271.aspx

...只需向下滚动一点即可查看示例。

I'd probably create an ObservableColletion with your POCO items in it. You could then bind that ObservableCollection to any of the Silverlight Item Rendering controls. You'll have to modify the default rendering template to create your tabs...but using that method, your tabs will constantly be up to date with the items in the collection without having to put any code in the code behind file.

UPDATE

Here's a link to the Silverlight Forums where somebody built a TabControl using the ItemsControl with sample XAML code:

http://silverlight.net/forums/t/12271.aspx

...just scroll down a bit to see the sample.

不交电费瞎发啥光 2024-08-01 02:16:02

一种方法是使用值转换器 (IValueConverter) 返回包装在 TabItem 中的 POCO。 我在此处发布了一个示例,作为相关问题。 还有示例 xaml 绑定以及将 ViewModel 作为参数注入到值转换器。

/jhd

One way to do this is to use a value converter (IValueConverter) to return your POCO wrapped in a TabItem. I posted an example here as part of a related question. There is also sample xaml binding and injection of the ViewModel as a parameter to the value converter.

/jhd

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