14 lines
331 B
C#
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;
|
|
}
|
|
}
|