ItemsPanelTemplate.ValidateTemplatedParent(FrameworkElement) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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:
The
templatedParent
cannot benull
.The
templatedParent
must be an ItemsPresenter.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.