16 lines
493 B
C#
16 lines
493 B
C#
using Microsoft.AspNetCore.Components;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CPF.Razor.Controls
|
|
{
|
|
public partial class StackPanel
|
|
{
|
|
#pragma warning disable CA1721 // Property names should not match get methods
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
#pragma warning restore CA1721 // Property names should not match get methods
|
|
protected override RenderFragment GetChildContent() => ChildContent;
|
|
}
|
|
}
|