зеркало из https://github.com/DeGsoft/maui-linux.git
12 строки
183 B
C#
12 строки
183 B
C#
|
using System;
|
||
|
|
||
|
namespace Xamarin.Forms
|
||
|
{
|
||
|
internal interface IStyle
|
||
|
{
|
||
|
Type TargetType { get; }
|
||
|
|
||
|
void Apply(BindableObject bindable);
|
||
|
void UnApply(BindableObject bindable);
|
||
|
}
|
||
|
}
|