File: IStyle.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System;
 
namespace Microsoft.Maui.Controls
{
	interface IStyle
	{
		Type TargetType { get; }
 
		void Apply(BindableObject bindable, SetterSpecificity specificity);
		void UnApply(BindableObject bindable);
	}
}