CPF/CPF.Razor/Controls/WindowFrame.cs
2024-01-09 00:39:58 +08:00

14 lines
331 B
C#

using Microsoft.AspNetCore.Components;
using System;
using System.Collections.Generic;
using System.Text;
namespace CPF.Razor.Controls
{
public partial class WindowFrame
{
[Parameter] public RenderFragment ChildContent { get; set; }
protected override RenderFragment GetChild() => ChildContent;
}
}