csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
4.6 KiB
133 lines
4.6 KiB
using Avalonia.Controls.Utils;
|
|
using Avalonia.Layout;
|
|
using Avalonia.Media;
|
|
|
|
namespace Avalonia.Controls
|
|
{
|
|
/// <summary>
|
|
/// A control which decorates a child with a border and background.
|
|
/// </summary>
|
|
public partial class Border : Decorator
|
|
{
|
|
/// <summary>
|
|
/// Defines the <see cref="Background"/> property.
|
|
/// </summary>
|
|
public static readonly StyledProperty<IBrush> BackgroundProperty =
|
|
AvaloniaProperty.Register<Border, IBrush>(nameof(Background));
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="BorderBrush"/> property.
|
|
/// </summary>
|
|
public static readonly StyledProperty<IBrush> BorderBrushProperty =
|
|
AvaloniaProperty.Register<Border, IBrush>(nameof(BorderBrush));
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="BorderThickness"/> property.
|
|
/// </summary>
|
|
public static readonly StyledProperty<Thickness> BorderThicknessProperty =
|
|
AvaloniaProperty.Register<Border, Thickness>(nameof(BorderThickness));
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="CornerRadius"/> property.
|
|
/// </summary>
|
|
public static readonly StyledProperty<CornerRadius> CornerRadiusProperty =
|
|
AvaloniaProperty.Register<Border, CornerRadius>(nameof(CornerRadius));
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="BoxShadow"/> property.
|
|
/// </summary>
|
|
public static readonly StyledProperty<BoxShadows> BoxShadowProperty =
|
|
AvaloniaProperty.Register<Border, BoxShadows>(nameof(BoxShadow));
|
|
|
|
private readonly BorderRenderHelper _borderRenderHelper = new BorderRenderHelper();
|
|
|
|
/// <summary>
|
|
/// Initializes static members of the <see cref="Border"/> class.
|
|
/// </summary>
|
|
static Border()
|
|
{
|
|
AffectsRender<Border>(
|
|
BackgroundProperty,
|
|
BorderBrushProperty,
|
|
BorderThicknessProperty,
|
|
CornerRadiusProperty,
|
|
BoxShadowProperty);
|
|
AffectsMeasure<Border>(BorderThicknessProperty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets a brush with which to paint the background.
|
|
/// </summary>
|
|
public IBrush Background
|
|
{
|
|
get { return GetValue(BackgroundProperty); }
|
|
set { SetValue(BackgroundProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets a brush with which to paint the border.
|
|
/// </summary>
|
|
public IBrush BorderBrush
|
|
{
|
|
get { return GetValue(BorderBrushProperty); }
|
|
set { SetValue(BorderBrushProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the thickness of the border.
|
|
/// </summary>
|
|
public Thickness BorderThickness
|
|
{
|
|
get { return GetValue(BorderThicknessProperty); }
|
|
set { SetValue(BorderThicknessProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the radius of the border rounded corners.
|
|
/// </summary>
|
|
public CornerRadius CornerRadius
|
|
{
|
|
get { return GetValue(CornerRadiusProperty); }
|
|
set { SetValue(CornerRadiusProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the box shadow effect parameters
|
|
/// </summary>
|
|
public BoxShadows BoxShadow
|
|
{
|
|
get => GetValue(BoxShadowProperty);
|
|
set => SetValue(BoxShadowProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Renders the control.
|
|
/// </summary>
|
|
/// <param name="context">The drawing context.</param>
|
|
public override void Render(DrawingContext context)
|
|
{
|
|
_borderRenderHelper.Render(context, Bounds.Size, BorderThickness, CornerRadius, Background, BorderBrush,
|
|
BoxShadow);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Measures the control.
|
|
/// </summary>
|
|
/// <param name="availableSize">The available size.</param>
|
|
/// <returns>The desired size of the control.</returns>
|
|
protected override Size MeasureOverride(Size availableSize)
|
|
{
|
|
return LayoutHelper.MeasureChild(Child, availableSize, Padding, BorderThickness);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Arranges the control's child.
|
|
/// </summary>
|
|
/// <param name="finalSize">The size allocated to the control.</param>
|
|
/// <returns>The space taken.</returns>
|
|
protected override Size ArrangeOverride(Size finalSize)
|
|
{
|
|
return LayoutHelper.ArrangeChild(Child, finalSize, Padding, BorderThickness);
|
|
}
|
|
}
|
|
}
|
|
|