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

15 lines
373 B
C#

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