ant-design-blazor/components/descriptions/DescriptionsItem.razor.cs
TimChen cbc5e823f0 refactor(module: all): separate the normal and template parameters (#552)
* fix: card title template

* fix: template:badge,collapse

* fix: comment refactor template

* fix: ribbonTests

* feat: descriptions refactor template

* feat: empty refactor template

* feat: list refactor template

* feat: menu refactor template

* feat: confirm add question icon

* feat: pageHeader and statistic refactor template

* feat: popconfirm refactor template

* feat: popver refactor template

* feat: result refactor template

* feat: step refactor template

* feat: switch refactor template

* feat: table refactor template

* feat: transfer refactor template

* feat: optimized code

* fix: pageheader

* refactor(module: empty): remove empty image constant images

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-09-16 13:58:16 +08:00

40 lines
962 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
using OneOf;
namespace AntDesign
{
public partial class DescriptionsItem : AntDomComponentBase, IDescriptionsItem
{
[Parameter]
public string Title { get; set; } = "";
[Parameter]
public RenderFragment TitleTemplate { get; set; }
[Parameter]
public int Span { get; set; } = 1;
[Parameter]
public RenderFragment ChildContent { get; set; }
[CascadingParameter]
public Descriptions Descriptions { get; set; }
protected override void Dispose(bool disposing)
{
this.Descriptions?.Items.Remove(this);
base.Dispose(disposing);
}
protected override void OnInitialized()
{
this.Descriptions?.Items.Add(this);
base.OnInitialized();
}
}
}