mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
17 lines
482 B
C#
17 lines
482 B
C#
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Controls
|
|||
|
{
|
|||
|
public class ExtendedSlider : Slider
|
|||
|
{
|
|||
|
public static readonly BindableProperty ThumbBorderColorProperty = BindableProperty.Create(
|
|||
|
nameof(ThumbBorderColor), typeof(Color), typeof(ExtendedSlider), Color.Gray);
|
|||
|
|
|||
|
public Color ThumbBorderColor
|
|||
|
{
|
|||
|
get => (Color)GetValue(ThumbBorderColorProperty);
|
|||
|
set => SetValue(ThumbBorderColorProperty, value);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|