CommandBindingCollection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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作成し、 の WindowにCommandBindingCollection追加します。
<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
コンストラクター
CommandBindingCollection() |
CommandBindingCollection クラスの新しいインスタンスを初期化します。 |
CommandBindingCollection(IList) |
指定した CommandBindingCollection の項目を使用して、IList クラスの新しいインスタンスを初期化します。 |
プロパティ
Count |
この CommandBinding 内の CommandBindingCollection 項目の数を取得します。 |
IsFixedSize |
このCommandBindingCollection が固定サイズかどうかを示す値を取得します。 |
IsReadOnly |
この CommandBindingCollection が読み取り専用かどうかを示す値を取得します。 |
IsSynchronized |
この CommandBindingCollection へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 |
Item[Int32] |
指定したインデックス位置にある CommandBinding を取得または設定します。 |
SyncRoot |
CommandBindingCollection へのアクセスを同期するために使用できるオブジェクトを取得します。 |
メソッド
明示的なインターフェイスの実装
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) |
IEnumerable を IQueryable に変換します。 |
適用対象
こちらもご覧ください
.NET