mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
15 lines
373 B
C#
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;
|
|
}
|
|
}
|