web-dev-qa-db-ja.com

リストをObservableCollectionに変換する方法は?

私は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;
    }
  }
}

それを修正するにはどうすればよいですか?または新しいクラスを作成する必要がありますか?

18
Albert.Qing

Productsクラスは何も継承しないでください。

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...
7
Brad Rem

ObservableCollectionには、これを行うコンストラクタがあります。

ObservableCollection<T> oc = new ObservableCollection<T>(List<T> list);
72
Ahad aghapour

あらゆる種類のListObservableCollectionに簡単に変換できる拡張メソッドを作成できます。

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.
5
William Melani

クラス製品はリストです。 BuildCollectionでは、Addメソッドを使用してこれにアクセスします。私の意見では、補助的な構造は必要ありません。

リストをObservableCollectionに変換するには

this.Select<Product, ObservableCollection>(p  => p) 

コレクションのメソッド。

2
Jones