我是一名java开发人员,是C#silverlight的新手。 在这个类中,我想将Products(List)转换为ObservableCollection。
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
namespace WPListBoxImage
{
/**It seems not work,if I just change List<Product> to ObservableCollection<Product>
public class Products : List<Product>
{
public Products()
{
BuildCollection();
}
private const string IMG_PATH = "../Images/";
public ObservableCollection<Product> DataCollection { get; set; }
public ObservableCollection<Product> BuildCollection()
{
DataCollection = new ObservableCollection<Product>();
DataCollection.Add(new Product("Haystack Code Generator for .NET", 799, IMG_PATH + "Haystack.jpg"));
DataCollection.Add(new Product("Fundamentals of N-Tier eBook", Convert.ToDecimal(19.95), IMG_PATH + "FundNTier_100.jpg"));
DataCollection.Add(new Product("Fundamentals of ASP.NET Security eBook", Convert.ToDecimal(19.95), IMG_PATH + "FundSecurity_100.jpg"));
DataCollection.Add(new Product("Fundamentals of SQL Server eBook", Convert.ToDecimal(19.95), IMG_PATH + "FundSQL_100.jpg"));
DataCollection.Add(new Product("Fundamentals of VB.NET eBook", Convert.ToDecimal(19.95), IMG_PATH + "FundVBNet_100.jpg"));
DataCollection.Add(new Product("Fundamentals of .NET eBook", Convert.ToDecimal(19.95), IMG_PATH + "FundDotNet_100.jpg"));
DataCollection.Add(new Product("Architecting ASP.NET eBook", Convert.ToDecimal(19.95), IMG_PATH + "ArchASPNET_100.jpg"));
DataCollection.Add(new Product("PDSA .NET Productivity Framework", Convert.ToDecimal(2500), IMG_PATH + "framework.jpg"));
return DataCollection;
}
}
}
我应该怎么做才能修复它?或者需要创建一个新类?
答案 0 :(得分:72)
ObservableCollection
中有一个构造函数可以执行此操作:
ObservableCollection<T> oc = new ObservableCollection<T>(List<T> list);
答案 1 :(得分:7)
您的产品类不应该继承任何内容。
public class Products
访问集合中的所有项目是通过Product类的DataCollection属性完成的。例如,
Products myProducts = new Products();
ObservableCollection<Product> myData = myProducts.DataCollection;
这还取决于您希望如何使用产品。你可以完全取消这个课程,然后做一些事情:
ObservableCollection<Product> Products = new ObservableCollection<Product>();
Products.Add(new Product("Haystack Code Generator for .NET", 799, IMG_PATH + "Haystack.jpg"));
// etc...
答案 2 :(得分:5)
您可以制作一种扩展方法,让您轻松地将任何类型的List
转换为ObservableCollection
。
public static class CollectionUtils
{
public static ObservableCollection<T> ToObservableCollection<T>(this IEnumerable<T> thisCollection)
{
if (thisCollection == null) return null;
var oc = new ObservableCollection<T>();
foreach (var item in thisCollection)
{
oc.Add(item);
}
return oc;
}
}
例如:
Products p = new Products();
//add your products
var collection = p.ToObservableCollection(); //use the extension method.
答案 3 :(得分:2)
类产品是一个列表。在BuildCollection中,您可以使用Add方法访问它。在我看来,你不需要辅助结构。
要将列表转换为ObservableCollection,请使用
this.Select<Product, ObservableCollection>(p => p)
收集方法。