mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 20:17:58 +08:00
d68a2dbb87
* feat: add page-header components * feat: add page-header components * feat: add page-header components * docs: some bugs of PageHeader * refactor: clean code * feat: add Descriptions component * feat: add Descriptions component * feat: add Descriptions component * feat: add Descriptions component * feat: add Descriptions component * fix: demo Co-authored-by: ElderJames <shunjiey@hotmail.com>
31 lines
741 B
C#
31 lines
741 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 OneOf<string, RenderFragment> Title { get; set; } = "";
|
|
|
|
[Parameter]
|
|
public int Span { get; set; } = 1;
|
|
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
[CascadingParameter]
|
|
public Descriptions Descriptions { get; set; }
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
this.Descriptions?.Items.Add(this);
|
|
base.OnInitialized();
|
|
}
|
|
}
|
|
}
|