ItemsControl.ContainerFromElement 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回属于拥有给定容器元素的当前 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
要为其返回容器的元素。
返回
如果 itemsControl
不为 null
,则返回属于拥有给定元素的指定 ItemsControl 的容器。 如果 itemsControl
为 null
,则返回属于任何 ItemsControl 的最近容器。