13 references to BorderColorProperty
Microsoft.Maui.Controls (13)
Button\Button.cs (3)
89 public static readonly BindableProperty BorderColorProperty = BorderElement.BorderColorProperty; 154 get { return (Color)GetValue(BorderElement.BorderColorProperty); } 155 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)
97 public static readonly BindableProperty BorderColorProperty = BorderElement.BorderColorProperty; 274 Color IBorderElement.BorderColorDefaultValue => (Color)BorderElement.BorderColorProperty.DefaultValue; 285 bool IBorderElement.IsBorderColorSet() => IsSet(BorderElement.BorderColorProperty);