RelativeSource コンストラクター

定義

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

オーバーロード

RelativeSource()

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

RelativeSource(RelativeSourceMode)

初期モードを指定して、RelativeSource クラスの新しいインスタンスを初期化します。

RelativeSource(RelativeSourceMode, Type, Int32)

初期モードと必要な相対ソースを検出するために追加のツリー探索用の修飾子を使用して、RelativeSource クラスの新しいインスタンスを初期化します。

RelativeSource()

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

public:
 RelativeSource();
public RelativeSource ();
Public Sub New ()

適用対象

RelativeSource(RelativeSourceMode)

初期モードを指定して、RelativeSource クラスの新しいインスタンスを初期化します。

public:
 RelativeSource(System::Windows::Data::RelativeSourceMode mode);
public RelativeSource (System.Windows.Data.RelativeSourceMode mode);
new System.Windows.Data.RelativeSource : System.Windows.Data.RelativeSourceMode -> System.Windows.Data.RelativeSource
Public Sub New (mode As RelativeSourceMode)

パラメーター

mode
RelativeSourceMode

RelativeSourceMode 値のいずれか 1 つ。

適用対象

RelativeSource(RelativeSourceMode, Type, Int32)

初期モードと必要な相対ソースを検出するために追加のツリー探索用の修飾子を使用して、RelativeSource クラスの新しいインスタンスを初期化します。

public:
 RelativeSource(System::Windows::Data::RelativeSourceMode mode, Type ^ ancestorType, int ancestorLevel);
public RelativeSource (System.Windows.Data.RelativeSourceMode mode, Type ancestorType, int ancestorLevel);
new System.Windows.Data.RelativeSource : System.Windows.Data.RelativeSourceMode * Type * int -> System.Windows.Data.RelativeSource
Public Sub New (mode As RelativeSourceMode, ancestorType As Type, ancestorLevel As Integer)

パラメーター

mode
RelativeSourceMode

RelativeSourceMode 値のいずれか 1 つ。 この署名を関連させるには、これが FindAncestor である必要があります。

ancestorType
Type

検索する先祖の Type

ancestorLevel
Int32

指定した型の先祖すべての中で、目的の先祖の位置を表す序数。

次の例では、バインディングのターゲット要素から始まる上向きパスで検出された 2 番目 ItemsControl の が返されます。

Binding myBinding = new Binding();
// Returns the second ItemsControl encountered on the upward path
// starting at the target element of the binding
myBinding.RelativeSource = new RelativeSource(
    RelativeSourceMode.FindAncestor, typeof(ItemsControl), 2);
Dim myBinding As New Binding()
' Returns the second ItemsControl encountered on the upward path
' starting at the target element of the binding
myBinding.RelativeSource = New RelativeSource(RelativeSourceMode.FindAncestor, GetType(ItemsControl), 2)

注釈

ancestorTypeancestorLevel は、 以外FindAncestorの パラメーターとして指定されている場合はmode関連性がありません。 このシグネチャは、他 RelativeSourceMode の値には使用しないでください。

適用対象