mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-06-28 13:34:09 +08:00
19 lines
625 B
C#
19 lines
625 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 Panel : Element<CPF.Controls.Panel>
|
|
{
|
|
//[Parameter] public string Background { get; set; }
|
|
|
|
#pragma warning disable CA1721 // Property names should not match get methods
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
#pragma warning restore CA1721 // Property names should not match get methods
|
|
protected override RenderFragment GetChildContent() => ChildContent;
|
|
}
|
|
}
|