下面是我正在使用的代码。我想要一个宽度为40的表,并且在该表的内部,还有另一个宽度为25的表。无论我给内部表提供什么值,它似乎都具有固定的宽度。它尝试使用“ LockedWidth”之类的其他选项,但这会使表变得非常小。可以请任何人帮忙。

PdfPTable outerTable = new PdfPTable(1) { HorizontalAlignment = 0 };
outerTable.TotalWidth = 40;
PdfPCell outerTableColumn = new PdfPCell()
{
    FixedHeight = 20,
    BackgroundColor = new BaseColor(217, 83, 79)
};

PdfPTable innerTable = new PdfPTable(1) { HorizontalAlignment = 0 };
innerTable.TotalWidth = 28;
PdfPCell innerTableColumn = new PdfPCell()
{
    FixedHeight = 15,
    BackgroundColor = new BaseColor(92, 184, 92)
};
innerTable.AddCell(innerTableColumn);
outerTableColumn.AddElement(innerTable);
outerTable.AddCell(outerTableColumn);

最佳答案

我现在无法尝试,但是我认为这应该有所帮助:

innerTable.WidthPercentage = 62.5f;

10-08 08:38