7 references to CornerRadiusProperty
Microsoft.Maui.Controls (6)
Button\Button.cs (5)
161 get { return (int)GetValue(CornerRadiusProperty); } 162 set { SetValue(CornerRadiusProperty, value); } 411 int IBorderElement.CornerRadiusDefaultValue => (int)CornerRadiusProperty.DefaultValue; 443 bool IBorderElement.IsCornerRadiusSet() => IsSet(CornerRadiusProperty); 519 int IButtonStroke.CornerRadius => (int)GetValue(CornerRadiusProperty);
Properties\AssemblyInfo.cs (1)
89[assembly: StyleProperty("border-radius", typeof(Button), nameof(Button.CornerRadiusProperty))]
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\BorderElementManager.cs (1)
32 if (e.PropertyName == Button.BorderWidthProperty.PropertyName || e.PropertyName == Button.CornerRadiusProperty.PropertyName || e.PropertyName == Button.BorderColorProperty.PropertyName)