- PDF Reader in C# Windows Form
- Отображение PDF-файла из Winform
- 11 ответов
- Обновить
- Create or Generate PDF file in Windows Forms
- Steps to create PDF document in Window Forms:
- Creating a PDF document with image
- Creating a PDF document with table
- Creating a simple PDF document with basic elements
- Filling forms
- Merge PDF Documents
- Displaying a pdf file from Winform
- 11 Answers 11
- Update
- Основы Windows Forms C# (изучаем основные формы) pdf
PDF Reader in C# Windows Form
in this post, how is it created “PDF File Reader” in C# windows form Application? We Will create a winform app about this issue.
The .Net framework does not provide a library to easily handle PDF files in .Net.
Adobe provides an ActiveX COM control that you can add to the CSharp Toolbox. It is a free Adobe Acrobat PDF Reader.
Start C# Windows Form Application and add the control to the C# Toolbox.
Step 1: R ight-click on any tab of toolbox and select “Choose Items”.
Step 2: Select the “COM Components” tab and click the check “Adobe PDF Reader” and click OK.
Step 2: Y ou will see the Adobe PDF Reader control icon in the toolbox, then you can drag and drop this control onto your form. The contents of the PDF file will appear here.
Form Design
Step 3: Right click on Adobe PDF Reader and in the Properties window, set the Dock property as “Fill”
Source Code:
openToolStripMenuItem_Click
Отображение PDF-файла из Winform
Я просто создаю простой калькулятор в C# (форма Windows)
Я создал «Справку пользователя», которая представляет собой файл PDF, и я хочу, чтобы этот файл PDF отображался, если пользователь нажимает кнопку «Справка» в WinForm. Если предположить, что Adobe Reader предварительно установлен на компьютере пользователя.
Как открыть PDF-файл по нажатию кнопки в WinForm?
Я не планирую размещать этот PDF-файл на жестком диске пользователя. Это означает, что я должен вставить этот PDF-файл в калькулятор (winForm) и отображать его при нажатии кнопки.
Пожалуйста, ознакомьте меня с наилучшей практикой для отображения встроенного файла в WinForm.
11 ответов
Я бы включил его в папку с моей программой, добавил ссылку в папку «Пуск», чтобы разрешить прямой доступ (без запуска моего инструмента) и просто при каком-либо событии щелчка System.Diagnostics.Process.Start(@».\Manual.pdf»);
Обновить
Хорошо, теперь мы подошли к совершенно новому вопросу: как встроить файл в мое приложение и запустить его?
На этот вопрос вы найдете здесь уже несколько ответов, но вот короткая версия:
- Щелкните правой кнопкой мыши свой проект и выберите «Добавить — существующий элемент».
- Выберите свой файл (не дважды щелкните по нему)
- Нажмите на маленькую стрелку рядом с кнопкой Добавить и выберите Добавить как ссылку.
- Дважды щелкните Свойства — Resources.resx
- Нажмите на маленькую стрелку рядом с Добавить ресурс и выберите Добавить существующий файл.
- Выберите тот же файл снова в открытом диалоге
- Теперь вы можете получить доступ к файлу в вашем коде как byte[] от Properties.Resources.NameOfResource
С помощью этих шагов вы ссылаетесь на ваш файл, где бы он ни находился в вашей структуре. Если вам это нравится, копия вашего файла PDF будет помещена в подпапку Resources вашего проекта, просто пропустите пункты один и два в приведенном выше списке.
Чтобы открыть PDF-файл, вам нужно записать байт [] на диск (возможно, с Path.GetTempFileName() ) и запустите его с помощью Adobe Reader. (Не забудьте удалить файл после использования)
Вы можете сослаться на элемент управления Adobe Reader ActiveX и связать его с вашим приложением.
Просто добавь AcroPDF.PDF.1 на панель инструментов на вкладке COM-компоненты (щелкните правой кнопкой мыши на панели инструментов и выберите Choose Items. ) затем перетащите экземпляр на Winform, чтобы дизайнер создал код для вас. В качестве альтернативы, после добавления необходимой ссылки вы можете использовать следующий код:
Вы можете использовать элемент управления WebBrowser и позволить IE загрузить программу чтения PDF для вас, если она установлена на компьютере.
Однако в последний раз, когда я пытался это сделать, мне сначала нужно было записать файл PDF на диск, чтобы я мог указать на него элемент управления WebBrowser.
В коде Google есть проект для просмотра C# pdf. http://code.google.com/p/pdfviewer-win32/ есть программа просмотра и библиотека, которую он использует, которая использует mupdf и xpdf для рендеринга PDF-документов в вашей программе winforms. В настоящее время я разрабатываю библиотеку пользовательских элементов управления, чтобы люди могли использовать их для просмотра PDF-файлов. это работает довольно хорошо.
Если вы хотите отобразить PDF внутри своего приложения, элемент управления WebBrowser, вероятно, предпочтительнее, чем элемент управления Adobe Reader, поскольку он будет очень плавно открывать файл в PDF Reader или в любом другом браузере, который IE использует по умолчанию для открытия PDF-файлов. Вы просто добавляете элемент управления WebBrowser к существующей или новой форме и переходите к файлу PDF.
Никогда не предполагайте, что на компьютерах пользователей установлены Adobe или любые другие элементы управления или библиотеки сторонних производителей, всегда упаковывайте их вместе с исполняемым файлом, иначе у вас могут возникнуть проблемы.
Элемент управления Adobe Reader, очевидно, не так хорошо интегрируется с.NET, как встроенный компонент Windows. Как правило, я всегда поддерживаю использование встроенных элементов управления.Net для сторонних поставщиков. Что касается встраивания файла в фактический исполняемый файл; этого не произойдет, пока Microsoft не решит, что любой старый PDF-файл может быть добавлен в CLS и скомпилирован в MSIL. Когда вы разрабатываете любое приложение в.NET, у вас есть код, который можно скомпилировать в промежуточный MSIL для преобразования во время выполнения CLR в собственный код и выполнения в ОС.
Create or Generate PDF file in Windows Forms
3 Sep 2020 / 15 minutes to read
In your Windows Forms application, add the following assemblies to use Essential PDF:
For more details, refer to this Assemblies Required documentation.
Steps to create PDF document in Window Forms:
Create a new Windows Forms application project.
Install the Syncfusion.Pdf.WinForms NuGet package as a reference to your .NET Framework applications from NuGet.org.
Include the following namespaces in the Form1.Designer.cs file.
Add a new button in Form1.Designer.cs to create PDF document as follows.
Create the btnCreate_Click event and add the following code in btnCreate_Click to create PDF file with simple text.
A complete working sample can be downloaded from Create-PDF-file.zip
By executing the program, you will get the PDF document as follows.
Creating a PDF document with image
The following code example shows how to create a PDF document with an image.
Creating a PDF document with table
The following code example shows how to create a PDF document with a simple table.
Creating a simple PDF document with basic elements
The PdfDocument object represents an entire PDF document that is being created. The following code example shows how to create a PDF document and add a PdfPage to it along with the PdfPageSettings.
- Essential PDF has APIs similar to the .NET GDI plus which helps to draw elements to the PDF page just like 2D drawing in .NET.
- Unlike System.Drawing APIs all the units are measured in point instead of pixel.
- In PDF, all the elements are placed in absolute positions and has the possibility for content overlapping if misplaced.
- Essential PDF provides the rendered bounds for each and every elements added through PdfLayoutResult objects. This can be used to add successive elements and prevent content overlap.
The following code example explains how to add an image from disk to a PDF document, by providing the rectangle coordinates.
The following methods can be used to add text to a PDF document.
The PdfTextElement provides the layout result of the added text by using the location of the next element that decides to prevent content overlapping. This is not available in the DrawString method.
The following code example adds the necessary text such as address, invoice number and date to create a basic invoice application.
Essential PDF provides two types of table models. The difference between both the table models can be referred from the link
Difference between PdfLightTable and PdfGrid
Since the invoice document requires only simple cell customizations, the given code example explains how to create a simple invoice table by using PdfGrid.
The following code example shows how to save the invoice document to disk and dispose the PdfDocument object.
The following screenshot shows the invoice PDF document created by using Essential PDF.
Filling forms
An interactive form, sometimes referred to as an AcroForm is a collection of fields for gathering information interactively from the user. A PDF document can contain any number of fields appearing in any combination of pages, all of that make a single, globally interactive form spanning the entire document.
Essential PDF allows you to create and manipulate existing form in PDF document. To work with existing form documents, the following namespaces are required.
The following guide shows how to fill a sample PDF form as shown.
Essential PDF allows you to fill the form fields by using PdfLoadedField class. You can get the form field either by using its field name or field index.
The filled form is shown in adobe reader application as follows.
Merge PDF Documents
Essential PDF supports merging multiple PDF documents from disk and stream using Merge method. You can merge the multiple PDF documents from disk by specifying the path of the documents in a string array.
Refer to the following code example to merge multiple documents from disk.
You can merge the PDF document streams by using the following code example.
Displaying a pdf file from Winform
I’m just creating a simple calculator in C# (windows form)
I’ve created a «User Help» which is a pdf file, what I want is to display that pdf file if the user clicks on the «Help» button in the WinForm. If assumed that Adobe reader is pre-installed on the user’s machine.
How to open the pdf file on button click in winForm?
I don’t plan to provide this pdf file on hard disk of user. Which means that I have to embed this pdf into the calculator (winForm) and have to display it on the button click.
Kindly guide me with the best practise for displaying an embedded file in winForm.
11 Answers 11
I would put it on within my program folder, add a link within my Start Menu folder to allow a direct access (without starting my tool) and just at on some click event System.Diagnostics.Process.Start(@».\Manual.pdf»);
Update
Ok, now we come to a completely new question: How to embed a file in my application and start it?
For this question you’ll find already several answers here, but here is the short version:
- Right click your project and select Add — Existing Item
- Select your file (don’t double click it)
- Click the little arrow next to the Add button and select Add As Link
- Double click on Properties — Resources.resx
- Click the little arrow next to Add Resource and select Add Existing File
- Select the same file again in the open dialog
- Now you can access the file within your code as byte[] from Properties.Resources.NameOfResource
With these steps you reference your file where ever it exists within your structure. If you like that a copy of your pdf file will be put into a subfolder Resources within your project, just skip the points one and two in the above list.
Основы Windows Forms C# (изучаем основные формы) pdf
[ —>Скачать с сервера (1.02 Mb) — бесплатно] | 19.04.2010, 20:45 |