File: IControlTemplated.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System.Collections.Generic;
 
namespace Microsoft.Maui.Controls
{
	internal interface IControlTemplated
	{
		ControlTemplate ControlTemplate { get; set; }
 
		IList<Element> InternalChildren { get; }
 
		Element TemplateRoot { get; set; }
 
		void OnControlTemplateChanged(ControlTemplate oldValue, ControlTemplate newValue);
 
		void OnApplyTemplate();
	}
}