ItemsControl.PrepareContainerForItemOverride Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Prepares the specified element to display the specified item.
Assembly: System.Windows (in System.Windows.dll)
'Declaration Protected Overridable Sub PrepareContainerForItemOverride ( _ element As DependencyObject, _ item As Object _ )
Parameters
- element
- Type: System.Windows.DependencyObject
The element used to display the specified item.
- item
- Type: System.Object
The item to display.
A class that inherits from ItemsControl can override this method to apply styles, set bindings, and so on. If you override PrepareContainerForItemOverride, always call the base implementation in your PrepareContainerForItemOverride implementation.
Show: