maui-linux/Xamarin.Forms.Core/IStyle.cs

12 строки
174 B
C#

using System;
namespace Xamarin.Forms
{
interface IStyle
{
Type TargetType { get; }
void Apply(BindableObject bindable);
void UnApply(BindableObject bindable);
}
}