来自 Window Phone 7 中列表集合的绑定列表集合
如何从 Window Phone 7 中的列表集合绑定列表集合,同时我能够从单个列表集合绑定
How to Binding list Collection from a list collection in Window Phone 7 while i am able to bind from a single list collection
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
首先,您的 Xaml 中有项目模板。
为其添加绑定。
在代码中定义该绑定属性。
为定义的属性分配值。
我的 Xaml 中有一个项目模板,如下所示:
在我的代码文件中,我将像这样定义绑定:
并提供这样的值:
希望这可以帮助您。
谢谢。
First of all have item template in your Xaml.
Add Binding to it.
Define that binding property in your code.
Assign values to the defined property.
I am having a item template in my Xaml like this :
In my code file i will define the binding like this:
And provide values like this:
Hope this might help you.
Thanks.
您可以使用下面的代码,
You can use the code below,
我想你的意思是你有很多收藏品?在这种情况下,您可以嵌套 ItemsControls(或 ListBox):
I take it you mean you have a collection of collections? In this case, you can nest your ItemsControls (or ListBox):
假设我们有一个 ListBox lstbx 和一个集合,假设
我们可以通过
Add()
将项目添加到集合中Ex-
然后我们可以将集合直接分配给列表框的项目源
ex.
//确保如果您在集合的单个项目中存储多个变量,您应该为ListBox项目模板创建自定义数据模板。 !
Let say we have a ListBox lstbx and a collection lets say
we can add items to the collection by
Add()
Ex-
then we can assign assign the collection directly to the listbox' item Source
ex.
//make sure if u are storing more than one variable in a single item of the collection ,you should create custom data template for the ListBox Item Template. !