How can I create buttons to add to a PDF file using iTextSharp?
问题 I'm creating "labels" and textboxes and checkboxes using iTextSharp, but my attempts to derive from that code to create buttons has not yet been successful. Here is how I'm creating textBoxes: PdfPCell cellRequesterNameTextBox = new PdfPCell() { CellEvent = new DynamicTextbox("textBoxRequesterName") }; tblFirstRow.AddCell(cellRequesterNameTextBox); . . . public class DynamicTextbox : IPdfPCellEvent { private string fieldname; public DynamicTextbox(string name) { fieldname = name; } public