Почему itextsharp WPF не работает?
Chunk c = new Chunk("TITLE", FontFactory.GetFont("Times New Roman", 2)); Paragraph p = new Paragraph(); // this line is error p.Alignment = Element.ALIGN_CENTER; p.IndentationLeft = 2; cb.SetFontAndSize(BaseFont.CreateFont(), 10); ct.SetSimpleColumn(new iTextSharp.text.Rectangle(50, 20, 40, 80)); ct.AddElement( new Paragraph(String.Format("TITLE DEFINE"))); //this line error. ct.Go();
строки, работающие в windows form, не работают в wpf
почему это так?
Эта ошибка такова:
Параграф-это двусмысленная ссылка между системами.Окна.Документы.Абзац и iTextSharp.text.Paragraph
Что я уже пробовал:
Chunk c = new Chunk("TITLE", FontFactory.GetFont("Times New Roman", 2)); Paragraph p = new Paragraph(); // this line is error p.Alignment = Element.ALIGN_CENTER; p.IndentationLeft = 2; cb.SetFontAndSize(BaseFont.CreateFont(), 10); ct.SetSimpleColumn(new iTextSharp.text.Rectangle(50, 20, 40, 80)); ct.AddElement( new Paragraph(String.Format("TITLE DEFINE"))); //this line error. ct.Go();
Maciej Los
Вы не можете полностью изменить свой вопрос, пока есть хотя бы один ответ!
Я возвращаюсь к первоначальному варианту.