mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
d2e9c4b247
* feat(module: config-provider): support RTL * add rtl for each component * fix rtl for pagination * add rtl for overlay
51 lines
1.2 KiB
C#
51 lines
1.2 KiB
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 Comment : AntDomComponentBase
|
|
{
|
|
[Parameter]
|
|
public string Author { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment AuthorTemplate { get; set; }
|
|
|
|
[Parameter]
|
|
public string Avatar { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment AvatarTemplate { get; set; }
|
|
|
|
[Parameter]
|
|
public string Content { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment ContentTemplate { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
[Parameter]
|
|
public string Datetime { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment DatetimeTemplate { get; set; }
|
|
|
|
[Parameter]
|
|
public IList<RenderFragment> Actions { get; set; } = new List<RenderFragment>();
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
this.ClassMapper.Clear()
|
|
.Add("ant-comment")
|
|
.If("ant-comment-rtl", () => RTL);
|
|
}
|
|
}
|
|
}
|