using System;
using Xamarin.Forms.Platform;
namespace Xamarin.Forms
{
[ContentProperty("Content")]
[RenderWith(typeof(_FrameRenderer))]
public class Frame : ContentView, IElementConfiguration
{
public static readonly BindableProperty OutlineColorProperty = BindableProperty.Create("OutlineColor", typeof(Color), typeof(Frame), Color.Default);
public static readonly BindableProperty HasShadowProperty = BindableProperty.Create("HasShadow", typeof(bool), typeof(Frame), true);
readonly Lazy> _platformConfigurationRegistry;
public Frame()
{
Padding = new Size(20, 20);
_platformConfigurationRegistry = new Lazy>(() => new PlatformConfigurationRegistry(this));
}
public bool HasShadow
{
get { return (bool)GetValue(HasShadowProperty); }
set { SetValue(HasShadowProperty, value); }
}
public Color OutlineColor
{
get { return (Color)GetValue(OutlineColorProperty); }
set { SetValue(OutlineColorProperty, value); }
}
public IPlatformElementConfiguration On() where T : IConfigPlatform
{
return _platformConfigurationRegistry.Value.On();
}
}
}