CompositeCollection クラス

定義

複数のコレクションと複数の項目を単一のリストとして表示できるようにします。

public ref class CompositeCollection : System::Collections::IList, System::Collections::Specialized::INotifyCollectionChanged, System::ComponentModel::ICollectionViewFactory, System::Windows::IWeakEventListener
[System.Windows.Localizability(System.Windows.LocalizationCategory.Ignore)]
public class CompositeCollection : System.Collections.IList, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.ICollectionViewFactory, System.Windows.IWeakEventListener
[<System.Windows.Localizability(System.Windows.LocalizationCategory.Ignore)>]
type CompositeCollection = class
    interface IList
    interface ICollection
    interface IEnumerable
    interface INotifyCollectionChanged
    interface ICollectionViewFactory
    interface IWeakEventListener
[<System.Windows.Localizability(System.Windows.LocalizationCategory.Ignore)>]
type CompositeCollection = class
    interface ICollection
    interface IEnumerable
    interface IList
    interface INotifyCollectionChanged
    interface ICollectionViewFactory
    interface IWeakEventListener
Public Class CompositeCollection
Implements ICollectionViewFactory, IList, INotifyCollectionChanged, IWeakEventListener
継承
CompositeCollection
属性
実装

注釈

CompositeCollection には、文字列、オブジェクト、XML ノード、要素、その他のコレクションなどの項目を含めることができます。 では ItemsControl 、 の CompositeCollection データを使用して、その に従ってコンテンツを ItemTemplate生成します。 オブジェクトを使用して ItemsControl コレクションにバインドする方法の詳細については、「データ バインディングの 概要」の「コレクションへのバインド」セクションを参照してください。

コンストラクター

CompositeCollection()

空で、既定の初期量を備えた、CompositeCollection クラスの新しいインスタンスを作成します。

CompositeCollection(Int32)

空で、指定した初期量を備えた、CompositeCollection クラスの新しいインスタンスを作成します。

プロパティ

Count

このコレクション内に格納されている項目の数を取得します。

Item[Int32]

コレクション内で指定した 0 から始まるオフセット位置にある項目を取得または置換するインデクサー プロパティ。

メソッド

Add(Object)

指定した項目をこのコレクションに追加します。

Clear()

コレクションを空にします。

Contains(Object)

指定した項目がこのコレクション内にあるかどうかを確認します。

CopyTo(Array, Int32)

このコレクションから指定した配列に対するオブジェクト参照のシャロー コピーを作成します。

Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
IndexOf(Object)

指定した項目が見つかった位置を示す、このコレクション内のインデックスを返します。

Insert(Int32, Object)

コレクション内の指定したインデックス位置に項目を挿入します。 指定した位置より後の項目は、すべて 1 ずつ後ろに移動されます。

MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ReceiveWeakEvent(Type, Object, EventArgs)

中央のイベント テーブルにあるイベントを処理します。

Remove(Object)

指定した項目参照をコレクションから削除します。 残りの項目は、すべて 1 つずつ上に移動します。

RemoveAt(Int32)

指定したインデックスにある項目をコレクションから削除します。 残りの項目は、すべて 1 つずつ上に移動します。

ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

イベント

CollectionChanged

アイテムの追加または削除によりコレクションが変更されたときに発生します。

明示的なインターフェイスの実装

ICollection.IsSynchronized

このメンバーは、Windows Presentation Foundation (WPF) インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。

ICollection.SyncRoot

このメンバーは、Windows Presentation Foundation (WPF) インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。

ICollectionViewFactory.CreateView()

このメンバーは、Windows Presentation Foundation (WPF) インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。

IEnumerable.GetEnumerator()

列挙子を返します。

IList.IsFixedSize

このメンバーは、Windows Presentation Foundation (WPF) インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。

IList.IsReadOnly

このメンバーは、Windows Presentation Foundation (WPF) インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。

INotifyCollectionChanged.CollectionChanged

コレクションが変更されたときに発生します。

IWeakEventListener.ReceiveWeakEvent(Type, Object, EventArgs)

このメンバーは、Windows Presentation Foundation (WPF) インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。

拡張メソッド

Cast<TResult>(IEnumerable)

IEnumerable の要素を、指定した型にキャストします。

OfType<TResult>(IEnumerable)

指定された型に基づいて IEnumerable の要素をフィルター処理します。

AsParallel(IEnumerable)

クエリの並列化を有効にします。

AsQueryable(IEnumerable)

IEnumerableIQueryable に変換します。

適用対象

こちらもご覧ください