我使用 MudBlazor 框架创建了这个表
<MudSimpleTable Style="overflow-x: auto;">
<thead>
<tr>
@foreach (var h in headings)
{
<th>@h</th>
}
</tr>
</thead>
<tbody>
@foreach (var row in rows)
{
<tr>
@foreach (var x in row.Split())
{
<td>@x</td>
}
</tr>
}
</tbody>
</MudSimpleTable>
@code {
string[] headings = { "ID", "Name", "Email", "Gender", "IP Address" };
string[] rows = {
@"1 Krishna kpartner0@usatoday.com Male 28.25.250.202",
@"2 Webb wstitle1@ning.com Male 237.168.134.114",
@"3 Nathanil nneal2@cyberchimps.com Male 92.6.0.175",
@"4 Adara alockwood3@patch.com Female 182.174.217.152",
@"5 Cecilius cchaplin4@shinystat.com Male 195.124.144.18",
@"6 Cicely cemerine9@soup.io Female 138.94.191.43",
};
}
但有时我需要调整除 ID 列之外的列大小。除了 ID 列之外的所有列都应该可以水平滚动。我怎样才能做到这一点??