Bagikan melalui


Layout.ShouldInvalidateOnChildAdded(View) Method

Definition

When implemented, should return true if child should call InvalidateMeasure() when added, and should return false if it should not call InvalidateMeasure(). The default value is true.

protected:
 virtual bool ShouldInvalidateOnChildAdded(Microsoft::Maui::Controls::View ^ child);
protected virtual bool ShouldInvalidateOnChildAdded (Microsoft.Maui.Controls.View child);
abstract member ShouldInvalidateOnChildAdded : Microsoft.Maui.Controls.View -> bool
override this.ShouldInvalidateOnChildAdded : Microsoft.Maui.Controls.View -> bool
Protected Overridable Function ShouldInvalidateOnChildAdded (child As View) As Boolean

Parameters

child
View

The child for which to specify whether or not to track invalidation.

Returns

true if child should call InvalidateMeasure(), otherwise false.

Applies to