13 references to BorderColorProperty
Microsoft.Maui.Controls (13)
Button\Button.cs (3)
87 public static readonly BindableProperty BorderColorProperty = BorderElement.BorderColorProperty; 152 get { return (Color)GetValue(BorderElement.BorderColorProperty); } 153 set { SetValue(BorderElement.BorderColorProperty, value); }
Frame\Frame.cs (3)
14 public static readonly BindableProperty BorderColorProperty = BorderElement.BorderColorProperty; 46 get { return (Color)GetValue(BorderElement.BorderColorProperty); } 47 set { SetValue(BorderElement.BorderColorProperty, value); }
ImageButton\ImageButton.cs (3)
31 public static readonly BindableProperty BorderColorProperty = BorderElement.BorderColorProperty; 71 get { return (Color)GetValue(BorderElement.BorderColorProperty); } 72 set { SetValue(BorderElement.BorderColorProperty, value); }
Properties\AssemblyInfo.cs (1)
87[assembly: StyleProperty("border-color", typeof(IBorderElement), nameof(BorderElement.BorderColorProperty))]
RadioButton\RadioButton.cs (3)
94 public static readonly BindableProperty BorderColorProperty = BorderElement.BorderColorProperty; 271 Color IBorderElement.BorderColorDefaultValue => (Color)BorderElement.BorderColorProperty.DefaultValue; 282 bool IBorderElement.IsBorderColorSet() => IsSet(BorderElement.BorderColorProperty);