CPF/CPF.Razor/Controls/StackPanel.cs

14 lines
330 B
C#
Raw Normal View History

2024-01-08 20:55:43 +08:00
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; }
2024-01-09 00:39:58 +08:00
protected override RenderFragment GetChild() => ChildContent;
2024-01-08 20:55:43 +08:00
}
}