2016-08-17 05:18:45 +03:00
|
|
|
|
using Bit.App.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Bit.App.Controls
|
|
|
|
|
{
|
|
|
|
|
public class ExtendedButton : Button
|
|
|
|
|
{
|
|
|
|
|
public static readonly BindableProperty PaddingProperty =
|
|
|
|
|
BindableProperty.Create(nameof(Padding), typeof(Thickness), typeof(ExtendedButton), default(Thickness));
|
2016-08-18 07:20:21 +03:00
|
|
|
|
public static readonly BindableProperty UppercaseProperty =
|
|
|
|
|
BindableProperty.Create(nameof(Padding), typeof(bool), typeof(ExtendedButton),
|
|
|
|
|
Device.OS == TargetPlatform.Android ? true : false);
|
2016-08-17 05:18:45 +03:00
|
|
|
|
|
|
|
|
|
public Thickness Padding
|
|
|
|
|
{
|
|
|
|
|
get { return (Thickness)GetValue(PaddingProperty); }
|
|
|
|
|
set { SetValue(PaddingProperty, value); }
|
|
|
|
|
}
|
2016-08-18 07:20:21 +03:00
|
|
|
|
|
|
|
|
|
public bool Uppercase
|
|
|
|
|
{
|
|
|
|
|
get { return (bool)GetValue(UppercaseProperty); }
|
|
|
|
|
set { SetValue(UppercaseProperty, value); }
|
|
|
|
|
}
|
2016-08-17 05:18:45 +03:00
|
|
|
|
}
|
|
|
|
|
}
|