зеркало из https://github.com/DeGsoft/maui-linux.git
14 строки
486 B
C#
14 строки
486 B
C#
namespace Xamarin.Forms
|
|
{
|
|
static class BorderElement
|
|
{
|
|
public static readonly BindableProperty BorderColorProperty =
|
|
BindableProperty.Create("BorderColor", typeof(Color), typeof(IBorderElement), Color.Default,
|
|
propertyChanged: OnBorderColorPropertyChanged);
|
|
|
|
static void OnBorderColorPropertyChanged(BindableObject bindable, object oldValue, object newValue)
|
|
{
|
|
((IBorderElement)bindable).OnBorderColorPropertyChanged((Color)oldValue, (Color)newValue);
|
|
}
|
|
}
|
|
} |