AAndrei Misiukevicharrows refactored
0d5402c0创建于 2019年6月2日历史提交
using System.ComponentModel;

using Xamarin.Forms;

using static PanCardView.Resources.ResourcesInfo;

namespace PanCardView.Controls
{
    public class LeftArrowControl : ArrowControl
    {
        public LeftArrowControl()
        {

            IsRight = false;
            AbsoluteLayout.SetLayoutBounds(this, new Rectangle(0, .5, -1, -1));
        }

        protected override ImageSource DefaultImageSource => WhiteLeftArrowImageSource;


        [EditorBrowsable(EditorBrowsableState.Never)]

        public new static void Preserve()

        {

        }
    }
}