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

12 строки
183 B
C#
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
using System;
namespace Xamarin.Forms
{
internal interface IStyle
{
Type TargetType { get; }
void Apply(BindableObject bindable);
void UnApply(BindableObject bindable);
}
}