CPF/CPF.Razor/Controls/DockPanel.cs

15 lines
374 B
C#
Raw Normal View History

2024-01-09 00:39:58 +08:00
using Microsoft.AspNetCore.Components;
//using Microsoft.MobileBlazorBindings.Core;
using System;
using System.Collections.Generic;
using System.Text;
namespace CPF.Razor.Controls
{
public partial class DockPanel
{
[Parameter] public RenderFragment ChildContent { get; set; }
protected override RenderFragment GetChild() => ChildContent;
}
}