CommandBindingCollection クラス

定義

CommandBinding オブジェクトのコレクションを表します。

public ref class CommandBindingCollection sealed : System::Collections::IList
public sealed class CommandBindingCollection : System.Collections.IList
type CommandBindingCollection = class
    interface IList
    interface ICollection
    interface IEnumerable
type CommandBindingCollection = class
    interface ICollection
    interface IEnumerable
    interface IList
Public NotInheritable Class CommandBindingCollection
Implements IList
継承
CommandBindingCollection
実装

次の例では、 をCommandBinding作成し、 の WindowCommandBindingCollection追加します。

<Window x:Class="SDKSamples.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:custom="clr-namespace:SDKSamples"
    Height="600" Width="800"
    >
  <Window.CommandBindings>
    <CommandBinding Command="{x:Static custom:Window1.CustomRoutedCommand}"
                    Executed="ExecutedCustomCommand"
                    CanExecute="CanExecuteCustomCommand" />
  </Window.CommandBindings>
CommandBinding customCommandBinding = new CommandBinding(
    CustomRoutedCommand, ExecutedCustomCommand, CanExecuteCustomCommand);

// attach CommandBinding to root window
this.CommandBindings.Add(customCommandBinding);
Dim customCommandBinding As New CommandBinding(CustomRoutedCommand, AddressOf ExecutedCustomCommand, AddressOf CanExecuteCustomCommand)

' attach CommandBinding to root window
Me.CommandBindings.Add(customCommandBinding)

注釈

からUIElement派生するすべてのオブジェクトには、 という名前が付いています。CommandBindingCollection

CommandBindings.

コンストラクター

CommandBindingCollection()

CommandBindingCollection クラスの新しいインスタンスを初期化します。

CommandBindingCollection(IList)

指定した CommandBindingCollection の項目を使用して、IList クラスの新しいインスタンスを初期化します。

プロパティ

Count

この CommandBinding 内の CommandBindingCollection 項目の数を取得します。

IsFixedSize

このCommandBindingCollection が固定サイズかどうかを示す値を取得します。

IsReadOnly

この CommandBindingCollection が読み取り専用かどうかを示す値を取得します。

IsSynchronized

この CommandBindingCollection へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。

Item[Int32]

指定したインデックス位置にある CommandBinding を取得または設定します。

SyncRoot

CommandBindingCollection へのアクセスを同期するために使用できるオブジェクトを取得します。

メソッド

Add(CommandBinding)

指定した CommandBinding をこの CommandBindingCollection に追加します。

AddRange(ICollection)

指定した ICollection の項目を、この CommandBindingCollection の末尾に追加します。

Clear()

この CommandBindingCollection からすべての項目を削除します。

Contains(CommandBinding)

指定された CommandBinding がこの CommandBindingCollection に含まれているかどうかを調べます。

CopyTo(CommandBinding[], Int32)

コピー先配列の指定したインデックスを開始位置として、CommandBindingCollection 内のすべての項目を、指定した 1 次元配列にコピーします。

Equals(Object)

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

(継承元 Object)
GetEnumerator()

この CommandBindingCollection を反復処理する列挙子を取得します。

GetHashCode()

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

(継承元 Object)
GetType()

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

(継承元 Object)
IndexOf(CommandBinding)

この CommandBinding で最初に出現する、指定した CommandBindingCollection を検索します。

Insert(Int32, CommandBinding)

この CommandBinding 内の指定したインデックスに、指定した CommandBindingCollection を挿入します。

MemberwiseClone()

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

(継承元 Object)
Remove(CommandBinding)

この CommandBinding 内で最初に見つかった指定の CommandBindingCollection を削除します。

RemoveAt(Int32)

この CommandBinding の指定したインデックス位置にある、指定した CommandBindingCollection を削除します。

ToString()

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

(継承元 Object)

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

ICollection.CopyTo(Array, Int32)

このメンバーの詳細については、「CopyTo(Array, Int32)」をご覧ください。

IList.Add(Object)

このメンバーの詳細については、「Add(Object)」をご覧ください。

IList.Contains(Object)

このメンバーの詳細については、「Contains(Object)」をご覧ください。

IList.IndexOf(Object)

このメンバーの詳細については、「IndexOf(Object)」をご覧ください。

IList.Insert(Int32, Object)

このメンバーの詳細については、「Insert(Int32, Object)」をご覧ください。

IList.Item[Int32]

このメンバーの詳細については、「Item[Int32]」をご覧ください。

IList.Remove(Object)

このメンバーの詳細については、「Remove(Object)」をご覧ください。

拡張メソッド

Cast<TResult>(IEnumerable)

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

OfType<TResult>(IEnumerable)

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

AsParallel(IEnumerable)

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

AsQueryable(IEnumerable)

IEnumerableIQueryable に変換します。

適用対象

こちらもご覧ください