0

我们可以在 wp7.x 的扩展视图中有一个列表框吗?我有一个应该自动添加列表框项目的场景。喜欢。

我有一个示例 cs 代码来提供 itemsource 并将数据与列表框绑定。

Cs 代码:

lstsample.Add(new sample() { fname = "3i", lname = "infotech" });
lstsample.Add(new sample() { fname = "Tata", lname = "Consultancy" });
lstsample.Add(new sample() { fname = "Robert", lname = "Bosche" });
lst.ItemsSource=lstsample;

可以这样做吗?

4

1 回答 1

0

当然,您可以在 ExpanderView 中使用 ListBox 作为 ItemTemplate 来编写它。但为什么?为了什么?

于 2012-06-04T09:57:58.553 回答