mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
14 lines
330 B
C#
14 lines
330 B
C#
using Microsoft.AspNetCore.Components;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CPF.Razor.Controls
|
|
{
|
|
public partial class StackPanel
|
|
{
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
protected override RenderFragment GetChild() => ChildContent;
|
|
}
|
|
}
|