mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
cae7e144b3
* fix: selection
26 lines
468 B
C#
26 lines
468 B
C#
@namespace AntDesign
|
|
@inherits ColumnBase
|
|
|
|
@if (IsPlaceholder)
|
|
{
|
|
<td style="padding: 0px; border: 0px; height: 0px;"></td>
|
|
}
|
|
else if (IsColGroup)
|
|
{
|
|
if (Width > 0)
|
|
{
|
|
<col style="width: @(Width)px; min-width: @(Width)px;">
|
|
}
|
|
}
|
|
else if (IsHeader)
|
|
{
|
|
<th class="@ClassMapper.Class" style="@FixedStyle @Style">
|
|
@(Title)
|
|
</th>
|
|
}
|
|
else
|
|
{
|
|
<td class="@ClassMapper.Class" style="@FixedStyle @Style">
|
|
@ChildContent
|
|
</td>
|
|
} |