ItemsControl.ContainerFromElement メソッド

定義

特定のコンテナー要素を所有している現在の ItemsControl に属しているコンテナーを返します。

オーバーロード

ContainerFromElement(DependencyObject)

特定のコンテナー要素を所有している現在の ItemsControl に属しているコンテナーを返します。

ContainerFromElement(ItemsControl, DependencyObject)

特定のコンテナー要素を所有する、指定された ItemsControl に属しているコンテナーを返します。

ContainerFromElement(DependencyObject)

特定のコンテナー要素を所有している現在の ItemsControl に属しているコンテナーを返します。

public:
 System::Windows::DependencyObject ^ ContainerFromElement(System::Windows::DependencyObject ^ element);
public System.Windows.DependencyObject ContainerFromElement (System.Windows.DependencyObject element);
member this.ContainerFromElement : System.Windows.DependencyObject -> System.Windows.DependencyObject
Public Function ContainerFromElement (element As DependencyObject) As DependencyObject

パラメーター

element
DependencyObject

コンテナーを返す要素。

戻り値

特定のコンテナー要素を所有している現在の ItemsControl に属しているコンテナー。そのようなコンテナーが存在しない場合は null

こちらもご覧ください

適用対象

ContainerFromElement(ItemsControl, DependencyObject)

特定のコンテナー要素を所有する、指定された ItemsControl に属しているコンテナーを返します。

public:
 static System::Windows::DependencyObject ^ ContainerFromElement(System::Windows::Controls::ItemsControl ^ itemsControl, System::Windows::DependencyObject ^ element);
public static System.Windows.DependencyObject ContainerFromElement (System.Windows.Controls.ItemsControl itemsControl, System.Windows.DependencyObject element);
static member ContainerFromElement : System.Windows.Controls.ItemsControl * System.Windows.DependencyObject -> System.Windows.DependencyObject
Public Shared Function ContainerFromElement (itemsControl As ItemsControl, element As DependencyObject) As DependencyObject

パラメーター

itemsControl
ItemsControl

コンテナーを返す対象の ItemsControl

element
DependencyObject

コンテナーを返す要素。

戻り値

itemsControlnull でない場合、指定された要素を所有する、指定された ItemsControl に属するコンテナー。 itemsControlnull の場合、いずれかの ItemsControl に属するコンテナーのうち最も近いものを返します。

こちらもご覧ください

適用対象