ItemsPanelTemplate.ValidateTemplatedParent(FrameworkElement) Method

Definition

Checks that the templated parent is a non-null ItemsPresenter object.

protected:
 override void ValidateTemplatedParent(System::Windows::FrameworkElement ^ templatedParent);
protected override void ValidateTemplatedParent (System.Windows.FrameworkElement templatedParent);
override this.ValidateTemplatedParent : System.Windows.FrameworkElement -> unit
Protected Overrides Sub ValidateTemplatedParent (templatedParent As FrameworkElement)

Parameters

templatedParent
FrameworkElement

The element this template is applied to. This must be an ItemsPresenter object.

Exceptions

templatedParent is null.

templatedParent is not an ItemsPresenter.

Remarks

The method uses the following rules:

  1. The templatedParent cannot be null.

  2. The templatedParent must be an ItemsPresenter.

Applies to