├── .gitignore ├── SupportFiles ├── annotations.pdf ├── attachments.pdf ├── bezier.pdf ├── bookmarks.pdf ├── ellipses.pdf ├── formfill.pdf ├── lines.pdf ├── multicolumntextandimages.pdf ├── paths.pdf ├── pdfform.pdf ├── polygons.pdf ├── rectangles.pdf ├── textboxes.pdf └── textlines.pdf ├── WPF ├── .NET Framework │ ├── Annotations │ │ ├── CS │ │ │ ├── Annotations.csproj │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── BoolReverseConverter.cs │ │ │ ├── ColorUserControl.xaml │ │ │ ├── ColorUserControl.xaml.cs │ │ │ ├── EditFileAttachmentAnnotationForm.xaml │ │ │ ├── EditFileAttachmentAnnotationForm.xaml.cs │ │ │ ├── EditInkAnnotationForm.xaml │ │ │ ├── EditInkAnnotationForm.xaml.cs │ │ │ ├── EditLineAnnotationForm.xaml │ │ │ ├── EditLineAnnotationForm.xaml.cs │ │ │ ├── EditLinkAnnotationForm.xaml │ │ │ ├── EditLinkAnnotationForm.xaml.cs │ │ │ ├── EditSCAnnotationForm.xaml │ │ │ ├── EditSCAnnotationForm.xaml.cs │ │ │ ├── EditStampAnnotationForm.xaml │ │ │ ├── EditStampAnnotationForm.xaml.cs │ │ │ ├── EditTextAnnotationForm.xaml │ │ │ ├── EditTextAnnotationForm.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── PDFDeviceColorToSolidColorBrushConverter.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ │ ├── AnnotationArrow16.ico │ │ │ │ ├── AnnotationEdit16.ico │ │ │ │ ├── AnnotationEllipse16.ico │ │ │ │ ├── AnnotationFileAttachment16.ico │ │ │ │ ├── AnnotationFreeText16.ico │ │ │ │ ├── AnnotationInk16.ico │ │ │ │ ├── AnnotationLine16.ico │ │ │ │ ├── AnnotationLink16.ico │ │ │ │ ├── AnnotationMarkupHighlight16.ico │ │ │ │ ├── AnnotationPolyLine16.ico │ │ │ │ ├── AnnotationPolygon16.ico │ │ │ │ ├── AnnotationRectangle16.ico │ │ │ │ ├── AnnotationStamp16.ico │ │ │ │ ├── AnnotationText16.ico │ │ │ │ ├── FilePrint16.ico │ │ │ │ ├── Hand16.ico │ │ │ │ ├── fileexit16.ico │ │ │ │ ├── fileopen16.ico │ │ │ │ └── filesave16.ico │ │ │ ├── app.config │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Annotations.vbproj │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── BoolReverseConverter.vb │ │ │ ├── ColorUserControl.xaml │ │ │ ├── ColorUserControl.xaml.vb │ │ │ ├── EditFileAttachmentAnnotationForm.xaml │ │ │ ├── EditFileAttachmentAnnotationForm.xaml.vb │ │ │ ├── EditInkAnnotationForm.xaml │ │ │ ├── EditInkAnnotationForm.xaml.vb │ │ │ ├── EditLineAnnotationForm.xaml │ │ │ ├── EditLineAnnotationForm.xaml.vb │ │ │ ├── EditLinkAnnotationForm.xaml │ │ │ ├── EditLinkAnnotationForm.xaml.vb │ │ │ ├── EditSCAnnotationForm.xaml │ │ │ ├── EditSCAnnotationForm.xaml.vb │ │ │ ├── EditStampAnnotationForm.xaml │ │ │ ├── EditStampAnnotationForm.xaml.vb │ │ │ ├── EditTextAnnotationForm.xaml │ │ │ ├── EditTextAnnotationForm.xaml.vb │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ ├── Settings.settings │ │ │ └── app.manifest │ │ │ ├── PDFDeviceColorToSolidColorBrushConverter.vb │ │ │ ├── Resources │ │ │ ├── AnnotationArrow16.ico │ │ │ ├── AnnotationEdit16.ico │ │ │ ├── AnnotationEllipse16.ico │ │ │ ├── AnnotationFileAttachment16.ico │ │ │ ├── AnnotationFreeText16.ico │ │ │ ├── AnnotationInk16.ico │ │ │ ├── AnnotationLine16.ico │ │ │ ├── AnnotationLink16.ico │ │ │ ├── AnnotationMarkupHighlight16.ico │ │ │ ├── AnnotationPolyLine16.ico │ │ │ ├── AnnotationPolygon16.ico │ │ │ ├── AnnotationRectangle16.ico │ │ │ ├── AnnotationStamp16.ico │ │ │ ├── AnnotationText16.ico │ │ │ ├── FilePrint16.ico │ │ │ ├── Hand16.ico │ │ │ ├── fileexit16.ico │ │ │ ├── fileopen16.ico │ │ │ └── filesave16.ico │ │ │ ├── app.config │ │ │ └── packages.config │ ├── Bookmarks │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Bookmarks.csproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── app.config │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── Bookmarks.vbproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── app.config │ │ │ └── packages.config │ ├── FileAttachments │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── EditAttachmentForm.xaml │ │ │ ├── EditAttachmentForm.xaml.cs │ │ │ ├── FileAttachments.csproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── app.config │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── EditAttachmentForm.xaml │ │ │ ├── EditAttachmentForm.xaml.vb │ │ │ ├── FileAttachments.vbproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── app.config │ │ │ └── packages.config │ ├── FormDesigner │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── BoolToVisibilityConverter.cs │ │ │ ├── CheckBoxPropertiesForm.xaml │ │ │ ├── CheckBoxPropertiesForm.xaml.cs │ │ │ ├── ColorUserControl.xaml │ │ │ ├── ColorUserControl.xaml.cs │ │ │ ├── DropDownListPropertiesForm.xaml │ │ │ ├── DropDownListPropertiesForm.xaml.cs │ │ │ ├── FormDesigner.csproj │ │ │ ├── ListBoxPropertiesForm.xaml │ │ │ ├── ListBoxPropertiesForm.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── PDFDeviceColorToSolidColorBrushConverter.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── PushButtonPropertiesForm.xaml │ │ │ ├── PushButtonPropertiesForm.xaml.cs │ │ │ ├── RadioButtonPropertiesForm.xaml │ │ │ ├── RadioButtonPropertiesForm.xaml.cs │ │ │ ├── Resources │ │ │ │ ├── AnnotationEdit16.ico │ │ │ │ ├── FieldCheckBox.ico │ │ │ │ ├── FieldComboBox.ico │ │ │ │ ├── FieldDigitalSignature.ico │ │ │ │ ├── FieldListBox.ico │ │ │ │ ├── FieldPushButton.ico │ │ │ │ ├── FieldRadioButton.ico │ │ │ │ ├── FieldTextBox.ico │ │ │ │ ├── Hand16.ico │ │ │ │ ├── fileopen16.ico │ │ │ │ └── filesave16.ico │ │ │ ├── ReverseBoolToVisibilityConverter.cs │ │ │ ├── SignaturePropertiesForm.xaml │ │ │ ├── SignaturePropertiesForm.xaml.cs │ │ │ ├── TextBoxPropertiesForm.xaml │ │ │ ├── TextBoxPropertiesForm.xaml.cs │ │ │ ├── app.config │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── BoolToVisibilityConverter.vb │ │ │ ├── CheckBoxPropertiesForm.xaml │ │ │ ├── CheckBoxPropertiesForm.xaml.vb │ │ │ ├── ColorUserControl.xaml │ │ │ ├── ColorUserControl.xaml.vb │ │ │ ├── DropDownListPropertiesForm.xaml │ │ │ ├── DropDownListPropertiesForm.xaml.vb │ │ │ ├── FormDesigner.vbproj │ │ │ ├── ListBoxPropertiesForm.xaml │ │ │ ├── ListBoxPropertiesForm.xaml.vb │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── PDFDeviceColorToSolidColorBrushConverter.vb │ │ │ ├── PushButtonPropertiesForm.xaml │ │ │ ├── PushButtonPropertiesForm.xaml.vb │ │ │ ├── RadioButtonPropertiesForm.xaml │ │ │ ├── RadioButtonPropertiesForm.xaml.vb │ │ │ ├── Resources │ │ │ ├── AnnotationEdit16.ico │ │ │ ├── FieldCheckBox.ico │ │ │ ├── FieldComboBox.ico │ │ │ ├── FieldDigitalSignature.ico │ │ │ ├── FieldListBox.ico │ │ │ ├── FieldPushButton.ico │ │ │ ├── FieldRadioButton.ico │ │ │ ├── FieldTextBox.ico │ │ │ ├── Hand16.ico │ │ │ ├── fileopen16.ico │ │ │ └── filesave16.ico │ │ │ ├── ReverseBoolToVisibilityConverter.vb │ │ │ ├── SignaturePropertiesForm.xaml │ │ │ ├── SignaturePropertiesForm.xaml.vb │ │ │ ├── TextBoxPropertiesForm.xaml │ │ │ ├── TextBoxPropertiesForm.xaml.vb │ │ │ ├── app.config │ │ │ └── packages.config │ ├── FormFill │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── FormFill.csproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── FormFill.vbproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── packages.config │ ├── PDF2Image │ │ ├── CS │ │ │ ├── PDF2Image.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── app.config │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── MainModule.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── PDF2Image.vbproj │ │ │ ├── app.config │ │ │ └── packages.config │ ├── PrintPDF │ │ ├── CS │ │ │ ├── PrintPDF.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── app.config │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── MainModule.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── PrintPDF.vbproj │ │ │ ├── app.config │ │ │ └── packages.config │ ├── PrintPreview │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── PDFPrintPreview.xaml │ │ │ ├── PDFPrintPreview.xaml.cs │ │ │ ├── PrintPreview.csproj │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── app.config │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── PDFPrintPreview.xaml │ │ │ ├── PDFPrintPreview.xaml.vb │ │ │ ├── PrintPreview.vbproj │ │ │ ├── app.config │ │ │ └── packages.config │ ├── RotatePage │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ │ ├── RotatePage90Clockwise16.ico │ │ │ │ ├── RotatePage90CounterClockwise16.ico │ │ │ │ ├── fileexit16.ico │ │ │ │ ├── fileopen16.ico │ │ │ │ └── filesave16.ico │ │ │ ├── RotatePage.csproj │ │ │ ├── app.config │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ ├── RotatePage90Clockwise16.ico │ │ │ ├── RotatePage90CounterClockwise16.ico │ │ │ ├── fileexit16.ico │ │ │ ├── fileopen16.ico │ │ │ └── filesave16.ico │ │ │ ├── RotatePage.vbproj │ │ │ ├── app.config │ │ │ └── packages.config │ ├── SearchText │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── SearchText.csproj │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── SearchText.vbproj │ │ │ └── packages.config │ └── ZoomAndPageLayout │ │ ├── CS │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── DisplayOneColumn16.ico │ │ │ ├── DisplaySinglePage16.ico │ │ │ ├── DisplayTwoColumn16.ico │ │ │ ├── ZoomActualSize16.ico │ │ │ ├── ZoomDynamic16.ico │ │ │ ├── ZoomFitHeight16.ico │ │ │ ├── ZoomFitVisible16.ico │ │ │ ├── ZoomFitWidth16.ico │ │ │ ├── ZoomIn16.ico │ │ │ ├── ZoomMarquee16.ico │ │ │ ├── ZoomOut16.ico │ │ │ ├── fileexit16.ico │ │ │ ├── fileopen16.ico │ │ │ └── filesave16.ico │ │ ├── ZoomAndPageLayout.csproj │ │ ├── app.config │ │ └── packages.config │ │ └── VBNET │ │ ├── Application.xaml │ │ ├── Application.xaml.vb │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.vb │ │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── MyExtensions │ │ │ └── MyWpfExtension.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Resources │ │ ├── DisplayOneColumn16.ico │ │ ├── DisplaySinglePage16.ico │ │ ├── DisplayTwoColumn16.ico │ │ ├── ZoomActualSize16.ico │ │ ├── ZoomDynamic16.ico │ │ ├── ZoomFitHeight16.ico │ │ ├── ZoomFitVisible16.ico │ │ ├── ZoomFitWidth16.ico │ │ ├── ZoomIn16.ico │ │ ├── ZoomMarquee16.ico │ │ ├── ZoomOut16.ico │ │ ├── fileexit16.ico │ │ ├── fileopen16.ico │ │ └── filesave16.ico │ │ ├── ZoomAndPageLayout.vbproj │ │ ├── app.config │ │ └── packages.config └── .NET │ ├── Annotations │ ├── AnnotationArrow16.png │ ├── AnnotationEdit16.png │ ├── AnnotationEllipse16.png │ ├── AnnotationFileAttachment16.png │ ├── AnnotationInk16.png │ ├── AnnotationLine16.png │ ├── AnnotationLink16.png │ ├── AnnotationMarkupHighlight16.png │ ├── AnnotationPolyLine16.png │ ├── AnnotationPolygon16.png │ ├── AnnotationRectangle16.png │ ├── AnnotationStamp16.png │ ├── AnnotationText16.png │ ├── Annotations.csproj │ ├── App.xaml │ ├── App.xaml.cs │ ├── BoolReverseConverter.cs │ ├── ColorUserControl.xaml │ ├── ColorUserControl.xaml.cs │ ├── EditFileAttachmentAnnotationForm.xaml │ ├── EditFileAttachmentAnnotationForm.xaml.cs │ ├── EditInkAnnotationForm.xaml │ ├── EditInkAnnotationForm.xaml.cs │ ├── EditLineAnnotationForm.xaml │ ├── EditLineAnnotationForm.xaml.cs │ ├── EditLinkAnnotationForm.xaml │ ├── EditLinkAnnotationForm.xaml.cs │ ├── EditSCAnnotationForm.xaml │ ├── EditSCAnnotationForm.xaml.cs │ ├── EditStampAnnotationForm.xaml │ ├── EditStampAnnotationForm.xaml.cs │ ├── EditTextAnnotationForm.xaml │ ├── EditTextAnnotationForm.xaml.cs │ ├── Hand16.png │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PDFDeviceColorToSolidColorBrushConverter.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.config │ ├── fileexit16.png │ ├── fileopen16.png │ └── filesave16.png │ ├── Bookmarks │ ├── App.xaml │ ├── App.xaml.cs │ ├── Bookmarks.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config │ ├── FileAttachments │ ├── App.xaml │ ├── App.xaml.cs │ ├── EditAttachmentForm.xaml │ ├── EditAttachmentForm.xaml.cs │ ├── FileAttachments.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config │ ├── FormDesigner │ ├── AnnotationEdit16.png │ ├── App.xaml │ ├── App.xaml.cs │ ├── BoolToVisibilityConverter.cs │ ├── CheckBoxPropertiesForm.xaml │ ├── CheckBoxPropertiesForm.xaml.cs │ ├── ColorUserControl.xaml │ ├── ColorUserControl.xaml.cs │ ├── DropDownListPropertiesForm.xaml │ ├── DropDownListPropertiesForm.xaml.cs │ ├── FieldCheckBox.png │ ├── FieldComboBox.png │ ├── FieldDigitalSignature.png │ ├── FieldListBox.png │ ├── FieldPushButton.png │ ├── FieldRadioButton.png │ ├── FieldTextBox.png │ ├── FormDesigner.csproj │ ├── Hand16.png │ ├── ListBoxPropertiesForm.xaml │ ├── ListBoxPropertiesForm.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PDFDeviceColorToSolidColorBrushConverter.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PushButtonPropertiesForm.xaml │ ├── PushButtonPropertiesForm.xaml.cs │ ├── RadioButtonPropertiesForm.xaml │ ├── RadioButtonPropertiesForm.xaml.cs │ ├── ReverseBoolToVisibilityConverter.cs │ ├── SignaturePropertiesForm.xaml │ ├── SignaturePropertiesForm.xaml.cs │ ├── TextBoxPropertiesForm.xaml │ ├── TextBoxPropertiesForm.xaml.cs │ ├── app.config │ ├── fileopen16.png │ └── filesave16.png │ ├── FormFill │ ├── App.xaml │ ├── App.xaml.cs │ ├── FormFill.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PDF2Image │ ├── PDF2Image.csproj │ ├── Program.cs │ └── app.config │ ├── PrintPDF │ ├── PrintPDF.csproj │ ├── Program.cs │ └── app.config │ ├── PrintPreview │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PDFPrintPreview.xaml │ ├── PDFPrintPreview.xaml.cs │ ├── PrintPreview.csproj │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config │ ├── RotatePage │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RotatePage.csproj │ ├── RotatePage90Clockwise16.png │ ├── RotatePage90CounterClockwise16.png │ ├── app.config │ ├── fileexit16.png │ ├── fileopen16.png │ └── filesave16.png │ ├── SearchText │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── SearchText.csproj │ └── ZoomAndPageLayout │ ├── App.xaml │ ├── App.xaml.cs │ ├── DisplayOneColumn16.png │ ├── DisplaySinglePage16.png │ ├── DisplayTwoColumn16.png │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ZoomActualSize16.png │ ├── ZoomAndPageLayout.csproj │ ├── ZoomDynamic16.png │ ├── ZoomFitHeight16.png │ ├── ZoomFitVisible16.png │ ├── ZoomFitWidth16.png │ ├── ZoomIn16.png │ ├── ZoomMarquee16.png │ ├── ZoomOut16.png │ ├── app.config │ ├── fileexit16.png │ ├── fileopen16.png │ └── filesave16.png ├── WinForms ├── .NET Framework │ ├── Annotations │ │ ├── CS │ │ │ ├── Annotations.csproj │ │ │ ├── AppForm.CS │ │ │ ├── AppForm.Designer.cs │ │ │ ├── AppForm.resx │ │ │ ├── EditFileAttachmentAnnotationForm.Designer.cs │ │ │ ├── EditFileAttachmentAnnotationForm.cs │ │ │ ├── EditFileAttachmentAnnotationForm.resx │ │ │ ├── EditInkAnnotationForm.Designer.cs │ │ │ ├── EditInkAnnotationForm.cs │ │ │ ├── EditInkAnnotationForm.resx │ │ │ ├── EditLineAnnotationForm.Designer.cs │ │ │ ├── EditLineAnnotationForm.cs │ │ │ ├── EditLineAnnotationForm.resx │ │ │ ├── EditLinkAnnotationForm.Designer.cs │ │ │ ├── EditLinkAnnotationForm.cs │ │ │ ├── EditLinkAnnotationForm.resx │ │ │ ├── EditSCAnnotationForm.Designer.cs │ │ │ ├── EditSCAnnotationForm.cs │ │ │ ├── EditSCAnnotationForm.resx │ │ │ ├── EditStampAnnotationForm.Designer.cs │ │ │ ├── EditStampAnnotationForm.cs │ │ │ ├── EditStampAnnotationForm.resx │ │ │ ├── EditTextAnnotationForm.Designer.cs │ │ │ ├── EditTextAnnotationForm.cs │ │ │ ├── EditTextAnnotationForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── Resources │ │ │ │ ├── AnnotationArrow16.ico │ │ │ │ ├── AnnotationEdit16.ico │ │ │ │ ├── AnnotationEllipse16.ico │ │ │ │ ├── AnnotationFileAttachment16.ico │ │ │ │ ├── AnnotationFreeText16.ico │ │ │ │ ├── AnnotationInk16.ico │ │ │ │ ├── AnnotationLine16.ico │ │ │ │ ├── AnnotationLink16.ico │ │ │ │ ├── AnnotationMarkupHighlight16.ico │ │ │ │ ├── AnnotationRectangle16.ico │ │ │ │ ├── AnnotationStamp16.ico │ │ │ │ ├── AnnotationText16.ico │ │ │ │ ├── FilePrint16.ico │ │ │ │ ├── Hand16.ico │ │ │ │ ├── fileexit16.ico │ │ │ │ ├── fileopen16.ico │ │ │ │ └── filesave16.ico │ │ │ ├── app.config │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Annotations.vbproj │ │ │ ├── AnnotationsForm.Designer.vb │ │ │ ├── AnnotationsForm.resx │ │ │ ├── AnnotationsForm.vb │ │ │ ├── EditFileAttachmentAnnotationForm.Designer.vb │ │ │ ├── EditFileAttachmentAnnotationForm.vb │ │ │ ├── EditLinkAnnotationForm.Designer.vb │ │ │ ├── EditLinkAnnotationForm.vb │ │ │ ├── EditStampAnnotationForm.Designer.vb │ │ │ ├── EditStampAnnotationForm.vb │ │ │ ├── EditTextAnnotationForm.Designer.vb │ │ │ ├── EditTextAnnotationForm.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ ├── AnnotationArrow16.ico │ │ │ ├── AnnotationEdit16.ico │ │ │ ├── AnnotationEllipse16.ico │ │ │ ├── AnnotationFileAttachment16.ico │ │ │ ├── AnnotationFreeText16.ico │ │ │ ├── AnnotationInk16.ico │ │ │ ├── AnnotationLine16.ico │ │ │ ├── AnnotationLink16.ico │ │ │ ├── AnnotationMarkupHighlight16.ico │ │ │ ├── AnnotationRectangle16.ico │ │ │ ├── AnnotationStamp16.ico │ │ │ ├── AnnotationText16.ico │ │ │ ├── FilePrint16.ico │ │ │ ├── Hand16.ico │ │ │ ├── fileexit16.ico │ │ │ ├── fileopen16.ico │ │ │ └── filesave16.ico │ │ │ ├── app.config │ │ │ └── packages.config │ ├── Bookmarks │ │ ├── CS │ │ │ ├── Bookmarks.csproj │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── Bookmarks.vbproj │ │ │ ├── MainForm.Designer.vb │ │ │ ├── MainForm.resx │ │ │ ├── MainForm.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ └── packages.config │ ├── FileAttachments │ │ ├── CS │ │ │ ├── EditAttachmentForm.Designer.cs │ │ │ ├── EditAttachmentForm.cs │ │ │ ├── EditAttachmentForm.resx │ │ │ ├── FileAttachments.csproj │ │ │ ├── FileAttachmentsForm.Designer.cs │ │ │ ├── FileAttachmentsForm.cs │ │ │ ├── FileAttachmentsForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── EditAttachmentForm.Designer.vb │ │ │ ├── EditAttachmentForm.resx │ │ │ ├── EditAttachmentForm.vb │ │ │ ├── FileAttachments.vbproj │ │ │ ├── FileAttachmentsForm.Designer.vb │ │ │ ├── FileAttachmentsForm.resx │ │ │ ├── FileAttachmentsForm.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── packages.config │ ├── FormDesigner │ │ ├── CS │ │ │ ├── AppForm.Designer.cs │ │ │ ├── AppForm.cs │ │ │ ├── AppForm.resx │ │ │ ├── CheckBoxPropertiesForm.Designer.cs │ │ │ ├── CheckBoxPropertiesForm.cs │ │ │ ├── CheckBoxPropertiesForm.resx │ │ │ ├── DropdownListPropertiesForm.Designer.cs │ │ │ ├── DropdownListPropertiesForm.cs │ │ │ ├── DropdownListPropertiesForm.resx │ │ │ ├── FormDesigner.csproj │ │ │ ├── ListBoxPropertiesForm.Designer.cs │ │ │ ├── ListBoxPropertiesForm.cs │ │ │ ├── ListBoxPropertiesForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── PushButtonPropertiesForm.Designer.cs │ │ │ ├── PushButtonPropertiesForm.cs │ │ │ ├── PushButtonPropertiesForm.resx │ │ │ ├── RadioButtonPropertiesForm.Designer.cs │ │ │ ├── RadioButtonPropertiesForm.cs │ │ │ ├── RadioButtonPropertiesForm.resx │ │ │ ├── Resources │ │ │ │ ├── AnnotationEdit16.ico │ │ │ │ ├── FieldCheckBox.ico │ │ │ │ ├── FieldComboBox.ico │ │ │ │ ├── FieldDigitalSignature.ico │ │ │ │ ├── FieldListBox.ico │ │ │ │ ├── FieldPushButton.ico │ │ │ │ ├── FieldRadioButton.ico │ │ │ │ ├── FieldTextBox.ico │ │ │ │ ├── Hand16.ico │ │ │ │ ├── fileopen16.ico │ │ │ │ └── filesave16.ico │ │ │ ├── SignaturePropertiesForm.Designer.cs │ │ │ ├── SignaturePropertiesForm.cs │ │ │ ├── SignaturePropertiesForm.resx │ │ │ ├── TextBoxPropertiesForm.Designer.cs │ │ │ ├── TextBoxPropertiesForm.cs │ │ │ ├── TextBoxPropertiesForm.resx │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── AppForm.Designer.vb │ │ │ ├── AppForm.resx │ │ │ ├── AppForm.vb │ │ │ ├── CheckBoxPropertiesForm.Designer.vb │ │ │ ├── CheckBoxPropertiesForm.vb │ │ │ ├── DropdownListPropertiesForm.Designer.vb │ │ │ ├── DropdownListPropertiesForm.vb │ │ │ ├── FormDesigner.vbproj │ │ │ ├── ListBoxPropertiesForm.Designer.vb │ │ │ ├── ListBoxPropertiesForm.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── PushButtonPropertiesForm.Designer.vb │ │ │ ├── PushButtonPropertiesForm.vb │ │ │ ├── RadioButtonPropertiesForm.Designer.vb │ │ │ ├── RadioButtonPropertiesForm.vb │ │ │ ├── Resources │ │ │ ├── AnnotationEdit16.ico │ │ │ ├── FieldCheckBox.ico │ │ │ ├── FieldComboBox.ico │ │ │ ├── FieldDigitalSignature.ico │ │ │ ├── FieldListBox.ico │ │ │ ├── FieldPushButton.ico │ │ │ ├── FieldRadioButton.ico │ │ │ ├── FieldTextBox.ico │ │ │ ├── Hand16.ico │ │ │ ├── fileopen16.ico │ │ │ └── filesave16.ico │ │ │ ├── SignaturePropertiesForm.Designer.vb │ │ │ ├── SignaturePropertiesForm.vb │ │ │ ├── TextBoxPropertiesForm.Designer.vb │ │ │ ├── TextBoxPropertiesForm.vb │ │ │ └── packages.config │ ├── FormFill │ │ ├── CS │ │ │ ├── AppForm.Designer.cs │ │ │ ├── AppForm.cs │ │ │ ├── AppForm.resx │ │ │ ├── FormFill.csproj │ │ │ ├── Program.cs │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── AppForm.Designer.vb │ │ │ ├── AppForm.resx │ │ │ ├── AppForm.vb │ │ │ ├── FormFill.vbproj │ │ │ └── packages.config │ ├── IncrementalDocumentSearch │ │ ├── AppForm.Designer.cs │ │ ├── AppForm.cs │ │ ├── AppForm.resx │ │ ├── IncrementalDocumentSearch.csproj │ │ ├── Program.cs │ │ └── packages.config │ ├── PDF2Image │ │ ├── CS │ │ │ ├── PDF2Image.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── PDF2Image.vb │ │ │ ├── PDF2Image.vbproj │ │ │ └── packages.config │ ├── PrintPDF │ │ ├── CS │ │ │ ├── PrintPDF.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── PrintPDF.vb │ │ │ ├── PrintPDF.vbproj │ │ │ └── packages.config │ ├── RotatePage │ │ ├── CS │ │ │ ├── AppForm.Designer.cs │ │ │ ├── AppForm.cs │ │ │ ├── AppForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ │ ├── RotatePage90Clockwise16.ico │ │ │ │ ├── RotatePage90CounterClockwise16.ico │ │ │ │ ├── fileexit16.ico │ │ │ │ ├── fileopen16.ico │ │ │ │ └── filesave16.ico │ │ │ ├── RotatePage.csproj │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── AppForm.Designer.vb │ │ │ ├── AppForm.resx │ │ │ ├── AppForm.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ ├── Resources │ │ │ ├── RotatePage90Clockwise16.ico │ │ │ ├── RotatePage90CounterClockwise16.ico │ │ │ ├── fileexit16.ico │ │ │ ├── fileopen16.ico │ │ │ └── filesave16.ico │ │ │ ├── RotatePage.vbproj │ │ │ └── packages.config │ ├── SearchText │ │ ├── CS │ │ │ ├── AppForm.Designer.cs │ │ │ ├── AppForm.cs │ │ │ ├── AppForm.resx │ │ │ ├── Program.cs │ │ │ ├── SearchText.csproj │ │ │ └── packages.config │ │ └── VBNET │ │ │ ├── AppForm.Designer.vb │ │ │ ├── AppForm.resx │ │ │ ├── AppForm.vb │ │ │ ├── SearchText.vbproj │ │ │ └── packages.config │ └── ZoomAndPageLayout │ │ ├── CS │ │ ├── AppForm.Designer.cs │ │ ├── AppForm.cs │ │ ├── AppForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── DisplayOneColumn16.ico │ │ │ ├── DisplaySinglePage16.ico │ │ │ ├── DisplayTwoColumn16.ico │ │ │ ├── ZOOMIN16.ICO │ │ │ ├── ZoomActualSize16.ico │ │ │ ├── ZoomDynamic16.ico │ │ │ ├── ZoomFitHeight16.ico │ │ │ ├── ZoomFitVisible16.ico │ │ │ ├── ZoomFitWidth16.ico │ │ │ ├── ZoomMarquee16.ico │ │ │ ├── ZoomOut16.ico │ │ │ ├── fileexit16.ico │ │ │ ├── fileopen16.ico │ │ │ └── filesave16.ico │ │ ├── ZoomAndPageLayout.csproj │ │ └── packages.config │ │ └── VBNET │ │ ├── AppForm.Designer.vb │ │ ├── AppForm.resx │ │ ├── AppForm.vb │ │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Program.vb │ │ ├── Resources │ │ ├── DisplayOneColumn16.ico │ │ ├── DisplaySinglePage16.ico │ │ ├── DisplayTwoColumn16.ico │ │ ├── ZOOMIN16.ICO │ │ ├── ZoomActualSize16.ico │ │ ├── ZoomDynamic16.ico │ │ ├── ZoomFitHeight16.ico │ │ ├── ZoomFitVisible16.ico │ │ ├── ZoomFitWidth16.ico │ │ ├── ZoomMarquee16.ico │ │ ├── ZoomOut16.ico │ │ ├── fileexit16.ico │ │ ├── fileopen16.ico │ │ └── filesave16.ico │ │ ├── ZoomAndPageLayout.vbproj │ │ └── packages.config └── .NET │ ├── Annotations │ ├── Annotations.csproj │ ├── AppForm.CS │ ├── AppForm.Designer.cs │ ├── AppForm.resx │ ├── EditFileAttachmentAnnotationForm.Designer.cs │ ├── EditFileAttachmentAnnotationForm.cs │ ├── EditFileAttachmentAnnotationForm.resx │ ├── EditInkAnnotationForm.Designer.cs │ ├── EditInkAnnotationForm.cs │ ├── EditInkAnnotationForm.resx │ ├── EditLineAnnotationForm.Designer.cs │ ├── EditLineAnnotationForm.cs │ ├── EditLineAnnotationForm.resx │ ├── EditLinkAnnotationForm.Designer.cs │ ├── EditLinkAnnotationForm.cs │ ├── EditLinkAnnotationForm.resx │ ├── EditSCAnnotationForm.Designer.cs │ ├── EditSCAnnotationForm.cs │ ├── EditSCAnnotationForm.resx │ ├── EditStampAnnotationForm.Designer.cs │ ├── EditStampAnnotationForm.cs │ ├── EditStampAnnotationForm.resx │ ├── EditTextAnnotationForm.Designer.cs │ ├── EditTextAnnotationForm.cs │ ├── EditTextAnnotationForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── AnnotationArrow16.ico │ │ ├── AnnotationEdit16.ico │ │ ├── AnnotationEllipse16.ico │ │ ├── AnnotationFileAttachment16.ico │ │ ├── AnnotationFreeText16.ico │ │ ├── AnnotationInk16.ico │ │ ├── AnnotationLine16.ico │ │ ├── AnnotationLink16.ico │ │ ├── AnnotationMarkupHighlight16.ico │ │ ├── AnnotationRectangle16.ico │ │ ├── AnnotationStamp16.ico │ │ ├── AnnotationText16.ico │ │ ├── FilePrint16.ico │ │ ├── Hand16.ico │ │ ├── fileexit16.ico │ │ ├── fileopen16.ico │ │ └── filesave16.ico │ └── app.config │ ├── Bookmarks │ ├── Bookmarks.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ └── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── FileAttachments │ ├── EditAttachmentForm.Designer.cs │ ├── EditAttachmentForm.cs │ ├── EditAttachmentForm.resx │ ├── FileAttachments.csproj │ ├── FileAttachmentsForm.Designer.cs │ ├── FileAttachmentsForm.cs │ ├── FileAttachmentsForm.resx │ ├── Program.cs │ └── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── FormDesigner │ ├── AppForm.Designer.cs │ ├── AppForm.cs │ ├── AppForm.resx │ ├── CheckBoxPropertiesForm.Designer.cs │ ├── CheckBoxPropertiesForm.cs │ ├── CheckBoxPropertiesForm.resx │ ├── DropdownListPropertiesForm.Designer.cs │ ├── DropdownListPropertiesForm.cs │ ├── DropdownListPropertiesForm.resx │ ├── FormDesigner.csproj │ ├── ListBoxPropertiesForm.Designer.cs │ ├── ListBoxPropertiesForm.cs │ ├── ListBoxPropertiesForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PushButtonPropertiesForm.Designer.cs │ ├── PushButtonPropertiesForm.cs │ ├── PushButtonPropertiesForm.resx │ ├── RadioButtonPropertiesForm.Designer.cs │ ├── RadioButtonPropertiesForm.cs │ ├── RadioButtonPropertiesForm.resx │ ├── Resources │ │ ├── AnnotationEdit16.ico │ │ ├── FieldCheckBox.ico │ │ ├── FieldComboBox.ico │ │ ├── FieldDigitalSignature.ico │ │ ├── FieldListBox.ico │ │ ├── FieldPushButton.ico │ │ ├── FieldRadioButton.ico │ │ ├── FieldTextBox.ico │ │ ├── Hand16.ico │ │ ├── fileopen16.ico │ │ └── filesave16.ico │ ├── SignaturePropertiesForm.Designer.cs │ ├── SignaturePropertiesForm.cs │ ├── SignaturePropertiesForm.resx │ ├── TextBoxPropertiesForm.Designer.cs │ ├── TextBoxPropertiesForm.cs │ └── TextBoxPropertiesForm.resx │ ├── FormFill │ ├── AppForm.Designer.cs │ ├── AppForm.cs │ ├── AppForm.resx │ ├── FormFill.csproj │ └── Program.cs │ ├── PDF2Image │ ├── PDF2Image.csproj │ └── Program.cs │ ├── PrintPDF │ ├── PrintPDF.csproj │ └── Program.cs │ ├── RotatePage │ ├── AppForm.Designer.cs │ ├── AppForm.cs │ ├── AppForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── RotatePage90Clockwise16.ico │ │ ├── RotatePage90CounterClockwise16.ico │ │ ├── fileexit16.ico │ │ ├── fileopen16.ico │ │ └── filesave16.ico │ └── RotatePage.csproj │ ├── SearchText │ ├── AppForm.Designer.cs │ ├── AppForm.cs │ ├── AppForm.resx │ ├── Program.cs │ └── SearchText.csproj │ └── ZoomAndPageLayout │ ├── AppForm.Designer.cs │ ├── AppForm.cs │ ├── AppForm.resx │ ├── Program.cs │ ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── DisplayOneColumn16.ico │ ├── DisplaySinglePage16.ico │ ├── DisplayTwoColumn16.ico │ ├── ZOOMIN16.ICO │ ├── ZoomActualSize16.ico │ ├── ZoomDynamic16.ico │ ├── ZoomFitHeight16.ico │ ├── ZoomFitVisible16.ico │ ├── ZoomFitWidth16.ico │ ├── ZoomMarquee16.ico │ ├── ZoomOut16.ico │ ├── fileexit16.ico │ ├── fileopen16.ico │ └── filesave16.ico │ └── ZoomAndPageLayout.csproj └── readme.md /SupportFiles/annotations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/annotations.pdf -------------------------------------------------------------------------------- /SupportFiles/attachments.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/attachments.pdf -------------------------------------------------------------------------------- /SupportFiles/bezier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/bezier.pdf -------------------------------------------------------------------------------- /SupportFiles/bookmarks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/bookmarks.pdf -------------------------------------------------------------------------------- /SupportFiles/ellipses.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/ellipses.pdf -------------------------------------------------------------------------------- /SupportFiles/formfill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/formfill.pdf -------------------------------------------------------------------------------- /SupportFiles/lines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/lines.pdf -------------------------------------------------------------------------------- /SupportFiles/multicolumntextandimages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/multicolumntextandimages.pdf -------------------------------------------------------------------------------- /SupportFiles/paths.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/paths.pdf -------------------------------------------------------------------------------- /SupportFiles/pdfform.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/pdfform.pdf -------------------------------------------------------------------------------- /SupportFiles/polygons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/polygons.pdf -------------------------------------------------------------------------------- /SupportFiles/rectangles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/rectangles.pdf -------------------------------------------------------------------------------- /SupportFiles/textboxes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/textboxes.pdf -------------------------------------------------------------------------------- /SupportFiles/textlines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/SupportFiles/textlines.pdf -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Annotations 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationArrow16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationArrow16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationEllipse16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationEllipse16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationFileAttachment16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationFileAttachment16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationFreeText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationFreeText16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationInk16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationInk16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationLine16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationLine16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationLink16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationLink16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationMarkupHighlight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationMarkupHighlight16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationPolyLine16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationPolyLine16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationPolygon16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationPolygon16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationRectangle16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationRectangle16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationStamp16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationStamp16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/AnnotationText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/AnnotationText16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/FilePrint16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/FilePrint16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/Hand16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/CS/Resources/filesave16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Application.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Application.xaml.vb: -------------------------------------------------------------------------------- 1 | Class Application 2 | 3 | ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException 4 | ' can be handled in this file. 5 | 6 | End Class 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationArrow16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationArrow16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationEllipse16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationEllipse16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationFileAttachment16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationFileAttachment16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationFreeText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationFreeText16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationInk16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationInk16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationLine16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationLine16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationLink16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationLink16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationMarkupHighlight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationMarkupHighlight16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationPolyLine16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationPolyLine16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationPolygon16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationPolygon16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationRectangle16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationRectangle16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationStamp16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationStamp16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/AnnotationText16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/FilePrint16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/FilePrint16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/Hand16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/Annotations/VBNET/Resources/filesave16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/Annotations/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Bookmarks/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Bookmarks/CS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Bookmarks 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Bookmarks/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Bookmarks/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Bookmarks/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Bookmarks/VBNET/Application.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Bookmarks/VBNET/Application.xaml.vb: -------------------------------------------------------------------------------- 1 | Class Application 2 | 3 | ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException 4 | ' can be handled in this file. 5 | 6 | End Class 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Bookmarks/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/Bookmarks/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FileAttachments/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FileAttachments/CS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace FileAttachments 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FileAttachments/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FileAttachments/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FileAttachments/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FileAttachments/VBNET/Application.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FileAttachments/VBNET/Application.xaml.vb: -------------------------------------------------------------------------------- 1 | Class Application 2 | 3 | ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException 4 | ' can be handled in this file. 5 | 6 | End Class 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FileAttachments/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FileAttachments/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace FormDesigner 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/FieldCheckBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/FieldCheckBox.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/FieldComboBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/FieldComboBox.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/FieldDigitalSignature.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/FieldDigitalSignature.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/FieldListBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/FieldListBox.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/FieldPushButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/FieldPushButton.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/FieldRadioButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/FieldRadioButton.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/FieldTextBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/FieldTextBox.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/Hand16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/CS/Resources/filesave16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Application.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Application.xaml.vb: -------------------------------------------------------------------------------- 1 | Class Application 2 | 3 | ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException 4 | ' can be handled in this file. 5 | 6 | End Class 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldCheckBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldCheckBox.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldComboBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldComboBox.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldDigitalSignature.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldDigitalSignature.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldListBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldListBox.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldPushButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldPushButton.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldRadioButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldRadioButton.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldTextBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/FieldTextBox.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/Hand16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/FormDesigner/VBNET/Resources/filesave16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/FormDesigner/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormFill/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormFill/CS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace FormFill 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormFill/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormFill/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormFill/VBNET/Application.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormFill/VBNET/Application.xaml.vb: -------------------------------------------------------------------------------- 1 | Class Application 2 | 3 | ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException 4 | ' can be handled in this file. 5 | 6 | End Class 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormFill/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/FormFill/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PDF2Image/CS/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | using O2S.Components.PDFRender4NET.WPF; 4 | using System.Windows.Media.Imaging; 5 | 6 | namespace PDF2Image 7 | { 8 | class Program 9 | { 10 | /// 11 | /// Main method. 12 | /// 13 | /// The args. 14 | [STAThread] 15 | static void Main(string[] args) 16 | { 17 | // Load the PDF file. 18 | PDFFile pdfFile = PDFFile.Open("..\\..\\..\\..\\..\\SupportFiles\\multicolumntextandimages.pdf"); 19 | 20 | // Get the image stream 21 | Stream imageStream = pdfFile.GetPageImage(0, 96, 96, PDFOutputImageFormat.TIFF); 22 | 23 | // Save the stream to disk 24 | FileStream fs = File.OpenWrite("pageimage.tiff"); 25 | byte[] imageBytes = ((MemoryStream)imageStream).ToArray(); 26 | fs.Write(imageBytes, 0, imageBytes.Length); 27 | fs.Close(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PDF2Image/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PDF2Image/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PDF2Image/VBNET/MainModule.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.IO 3 | Imports O2S.Components.PDFRender4NET.WPF 4 | 5 | Module MainModule 6 | 7 | ''' 8 | ''' Main method. 9 | ''' 10 | _ 11 | Sub Main() 12 | ' Load the PDF file. 13 | Dim file As PDFFile = PDFFile.Open("..\..\..\..\..\SupportFiles\annotations.pdf") 14 | 15 | ' Get the image stream 16 | Dim imageStream As Stream = file.GetPageImage(0, 96, 96, PDFOutputImageFormat.TIFF) 17 | file.Dispose() 18 | 19 | ' Save the stream to disk 20 | Dim fs As FileStream = System.IO.File.OpenWrite("pageimage.tif") 21 | Dim imageBytes As Byte() = DirectCast(imageStream, MemoryStream).ToArray() 22 | fs.Write(imageBytes, 0, imageBytes.Length) 23 | fs.Close() 24 | End Sub 25 | 26 | End Module 27 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PDF2Image/VBNET/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PDF2Image/VBNET/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 2 9 | true 10 | 11 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PDF2Image/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PDF2Image/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPDF/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPDF/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPDF/VBNET/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPDF/VBNET/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 2 9 | true 10 | 11 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPDF/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPDF/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/CS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace PrintPreview 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/CS/PDFPrintPreview.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/CS/PDFPrintPreview.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Documents; 3 | 4 | namespace PrintPreview 5 | { 6 | /// 7 | /// Interaction logic for PDFPrintPreview.xaml 8 | /// 9 | public partial class PDFPrintPreview : Window 10 | { 11 | /// 12 | /// Initializes a new instance of the class. 13 | /// 14 | public PDFPrintPreview() 15 | { 16 | InitializeComponent(); 17 | DataContext = this; 18 | } 19 | 20 | /// 21 | /// Gets or sets the print preview document. 22 | /// 23 | /// 24 | /// The print preview document. 25 | /// 26 | public IDocumentPaginatorSource PrintPreviewDocument 27 | { get; set; } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/VBNET/Application.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/VBNET/Application.xaml.vb: -------------------------------------------------------------------------------- 1 | Class Application 2 | 3 | ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException 4 | ' can be handled in this file. 5 | 6 | End Class 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/VBNET/PDFPrintPreview.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /WPF/.NET Framework/PrintPreview/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace RotatePage 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/Resources/RotatePage90Clockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/CS/Resources/RotatePage90Clockwise16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/Resources/RotatePage90CounterClockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/CS/Resources/RotatePage90CounterClockwise16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/CS/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/CS/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/CS/Resources/filesave16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/VBNET/Application.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/VBNET/Application.xaml.vb: -------------------------------------------------------------------------------- 1 | Class Application 2 | 3 | ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException 4 | ' can be handled in this file. 5 | 6 | End Class 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/VBNET/Resources/RotatePage90Clockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/VBNET/Resources/RotatePage90Clockwise16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/VBNET/Resources/RotatePage90CounterClockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/VBNET/Resources/RotatePage90CounterClockwise16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/VBNET/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/VBNET/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/VBNET/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/VBNET/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/VBNET/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/RotatePage/VBNET/Resources/filesave16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/RotatePage/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/SearchText/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/SearchText/CS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace SearchText 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /WPF/.NET Framework/SearchText/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/SearchText/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/SearchText/VBNET/Application.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/SearchText/VBNET/Application.xaml.vb: -------------------------------------------------------------------------------- 1 | Class Application 2 | 3 | ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException 4 | ' can be handled in this file. 5 | 6 | End Class 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/SearchText/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/SearchText/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ZoomAndPageLayout 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplayOneColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplayOneColumn16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplaySinglePage16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplaySinglePage16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplayTwoColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplayTwoColumn16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomActualSize16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomActualSize16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomDynamic16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomDynamic16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitHeight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitHeight16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitVisible16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitVisible16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitWidth16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitWidth16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomIn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomIn16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomMarquee16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomMarquee16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomOut16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomOut16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/CS/Resources/filesave16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Application.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Application.xaml.vb: -------------------------------------------------------------------------------- 1 | Class Application 2 | 3 | ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException 4 | ' can be handled in this file. 5 | 6 | End Class 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplayOneColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplayOneColumn16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplaySinglePage16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplaySinglePage16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplayTwoColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplayTwoColumn16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomActualSize16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomActualSize16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomDynamic16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomDynamic16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitHeight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitHeight16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitVisible16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitVisible16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitWidth16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitWidth16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomIn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomIn16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomMarquee16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomMarquee16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomOut16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomOut16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET Framework/ZoomAndPageLayout/VBNET/Resources/filesave16.ico -------------------------------------------------------------------------------- /WPF/.NET Framework/ZoomAndPageLayout/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationArrow16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationArrow16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationEdit16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationEdit16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationEllipse16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationEllipse16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationFileAttachment16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationFileAttachment16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationInk16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationInk16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationLine16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationLine16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationLink16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationLink16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationMarkupHighlight16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationMarkupHighlight16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationPolyLine16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationPolyLine16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationPolygon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationPolygon16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationRectangle16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationRectangle16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationStamp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationStamp16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/AnnotationText16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/AnnotationText16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET/Annotations/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Annotations 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET/Annotations/Hand16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/Hand16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Annotations.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /WPF/.NET/Annotations/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET/Annotations/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/Annotations/fileexit16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/fileexit16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/fileopen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/fileopen16.png -------------------------------------------------------------------------------- /WPF/.NET/Annotations/filesave16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/Annotations/filesave16.png -------------------------------------------------------------------------------- /WPF/.NET/Bookmarks/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET/Bookmarks/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Bookmarks 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET/Bookmarks/Bookmarks.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | Bookmarks 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for WPF .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WPF/.NET/Bookmarks/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Bookmarks.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /WPF/.NET/Bookmarks/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET/Bookmarks/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/FileAttachments/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET/FileAttachments/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace FileAttachments 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET/FileAttachments/FileAttachments.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | FileAttachments 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for WPF .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WPF/.NET/FileAttachments/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET/FileAttachments/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/AnnotationEdit16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/AnnotationEdit16.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace FormDesigner 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/FieldCheckBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/FieldCheckBox.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/FieldComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/FieldComboBox.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/FieldDigitalSignature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/FieldDigitalSignature.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/FieldListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/FieldListBox.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/FieldPushButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/FieldPushButton.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/FieldRadioButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/FieldRadioButton.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/FieldTextBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/FieldTextBox.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/Hand16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/Hand16.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace FormDesigner.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/fileopen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/fileopen16.png -------------------------------------------------------------------------------- /WPF/.NET/FormDesigner/filesave16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/FormDesigner/filesave16.png -------------------------------------------------------------------------------- /WPF/.NET/FormFill/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET/FormFill/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace FormFill 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /WPF/.NET/FormFill/FormFill.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | FormFill 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for WPF .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WPF/.NET/FormFill/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET/PDF2Image/PDF2Image.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | WinExe 6 | netcoreapp3.0 7 | true 8 | PDF2Image 9 | O2 Solutions 10 | PDFView4NET Sample Application 11 | O2 Solutions 12 | O2 Solutions 13 | PDFView4NET for WPF .NET Core 14 | 1.0.0.0 15 | 1.0.0.0 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /WPF/.NET/PDF2Image/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | using O2S.Components.PDFRender4NET.WPF; 4 | using System.Windows.Media.Imaging; 5 | 6 | namespace PDF2Image 7 | { 8 | class Program 9 | { 10 | /// 11 | /// Main method. 12 | /// 13 | /// The args. 14 | [STAThread] 15 | static void Main(string[] args) 16 | { 17 | // Load the PDF file. 18 | PDFFile pdfFile = PDFFile.Open("..\\..\\..\\..\\..\\..\\SupportFiles\\multicolumntextandimages.pdf"); 19 | 20 | // Get the image stream 21 | Stream imageStream = pdfFile.GetPageImage(0, 96, 96, PDFOutputImageFormat.TIFF); 22 | 23 | // Save the stream to disk 24 | FileStream fs = File.OpenWrite("pageimage.tiff"); 25 | byte[] imageBytes = ((MemoryStream)imageStream).ToArray(); 26 | fs.Write(imageBytes, 0, imageBytes.Length); 27 | fs.Close(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /WPF/.NET/PDF2Image/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/PrintPDF/PrintPDF.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | PrintPDF 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for WPF .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WPF/.NET/PrintPDF/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/PrintPreview/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET/PrintPreview/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace PrintPreview 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET/PrintPreview/PDFPrintPreview.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /WPF/.NET/PrintPreview/PDFPrintPreview.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Documents; 3 | 4 | namespace PrintPreview 5 | { 6 | /// 7 | /// Interaction logic for PDFPrintPreview.xaml 8 | /// 9 | public partial class PDFPrintPreview : Window 10 | { 11 | /// 12 | /// Initializes a new instance of the class. 13 | /// 14 | public PDFPrintPreview() 15 | { 16 | InitializeComponent(); 17 | DataContext = this; 18 | } 19 | 20 | /// 21 | /// Gets or sets the print preview document. 22 | /// 23 | /// 24 | /// The print preview document. 25 | /// 26 | public IDocumentPaginatorSource PrintPreviewDocument 27 | { get; set; } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /WPF/.NET/PrintPreview/PrintPreview.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | PrintPreview 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for WPF .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WPF/.NET/PrintPreview/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET/PrintPreview/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace RotatePage 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace RotatePage.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/RotatePage.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | RotatePage 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for WPF .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/RotatePage90Clockwise16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/RotatePage/RotatePage90Clockwise16.png -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/RotatePage90CounterClockwise16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/RotatePage/RotatePage90CounterClockwise16.png -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/fileexit16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/RotatePage/fileexit16.png -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/fileopen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/RotatePage/fileopen16.png -------------------------------------------------------------------------------- /WPF/.NET/RotatePage/filesave16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/RotatePage/filesave16.png -------------------------------------------------------------------------------- /WPF/.NET/SearchText/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET/SearchText/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace SearchText 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /WPF/.NET/SearchText/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET/SearchText/SearchText.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | SearchText 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for WPF .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ZoomAndPageLayout 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/DisplayOneColumn16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/DisplayOneColumn16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/DisplaySinglePage16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/DisplaySinglePage16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/DisplayTwoColumn16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/DisplayTwoColumn16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/ZoomActualSize16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/ZoomActualSize16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/ZoomDynamic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/ZoomDynamic16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/ZoomFitHeight16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/ZoomFitHeight16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/ZoomFitVisible16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/ZoomFitVisible16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/ZoomFitWidth16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/ZoomFitWidth16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/ZoomIn16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/ZoomIn16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/ZoomMarquee16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/ZoomMarquee16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/ZoomOut16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/ZoomOut16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/fileexit16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/fileexit16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/fileopen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/fileopen16.png -------------------------------------------------------------------------------- /WPF/.NET/ZoomAndPageLayout/filesave16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WPF/.NET/ZoomAndPageLayout/filesave16.png -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationArrow16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationArrow16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationEllipse16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationEllipse16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationFileAttachment16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationFileAttachment16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationFreeText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationFreeText16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationInk16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationInk16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationLine16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationLine16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationLink16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationLink16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationMarkupHighlight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationMarkupHighlight16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationRectangle16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationRectangle16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationStamp16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationStamp16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/AnnotationText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/AnnotationText16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/FilePrint16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/FilePrint16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/Hand16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/CS/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | Annotations.AnnotationsForm 5 | false 6 | 0 7 | true 8 | 0 9 | true 10 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationArrow16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationArrow16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationEllipse16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationEllipse16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationFileAttachment16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationFileAttachment16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationFreeText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationFreeText16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationInk16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationInk16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationLine16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationLine16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationLink16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationLink16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationMarkupHighlight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationMarkupHighlight16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationRectangle16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationRectangle16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationStamp16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationStamp16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/AnnotationText16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/FilePrint16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/FilePrint16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/Hand16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Annotations/VBNET/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/Annotations/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/Bookmarks/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/Bookmarks/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/Bookmarks/VBNET/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/Bookmarks/VBNET/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /WinForms/.NET Framework/Bookmarks/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/Bookmarks/VBNET/Program.vb: -------------------------------------------------------------------------------- 1 | Imports Microsoft.VisualBasic 2 | Imports System 3 | Imports System.Collections.Generic 4 | Imports System.Windows.Forms 5 | 6 | Namespace O2S.Samples.PDFView4NET.Bookmarks 7 | Friend NotInheritable Class Program 8 | ''' 9 | ''' The main entry point for the application. 10 | ''' 11 | Private Sub New() 12 | End Sub 13 | _ 14 | Shared Sub Main() 15 | Application.EnableVisualStyles() 16 | Application.SetCompatibleTextRenderingDefault(False) 17 | Application.Run(New MainForm()) 18 | End Sub 19 | End Class 20 | End Namespace -------------------------------------------------------------------------------- /WinForms/.NET Framework/Bookmarks/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FileAttachments/CS/EditAttachmentForm.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace O2S.Samples.PDFView4NET.FileAttachments 10 | { 11 | public partial class EditAttachmentForm : Form 12 | { 13 | public EditAttachmentForm() 14 | { 15 | InitializeComponent(); 16 | } 17 | 18 | private void btnBrowse_Click(object sender, EventArgs e) 19 | { 20 | if (ofd.ShowDialog() == DialogResult.OK) 21 | { 22 | txtFileName.Text = ofd.FileName; 23 | } 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /WinForms/.NET Framework/FileAttachments/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FileAttachments/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FileAttachments/VBNET/EditAttachmentForm.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Collections.Generic 3 | Imports System.ComponentModel 4 | Imports System.Data 5 | Imports System.Drawing 6 | Imports System.Text 7 | Imports System.Windows.Forms 8 | Imports O2S.Components.PDFView4NET 9 | 10 | 11 | Namespace FileAttachments 12 | Public Class EditAttachmentForm 13 | Inherits Form 14 | 15 | Public Sub New() 16 | InitializeComponent() 17 | End Sub 'New 18 | 19 | 20 | Private Sub btnBrowse_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnBrowse.Click 21 | If ofd.ShowDialog() = DialogResult.OK Then 22 | txtFileName.Text = ofd.FileName 23 | 24 | Dim u As UserInteractiveWorkMode = UserInteractiveWorkMode.AddFileAttachmentAnnotation 25 | Dim doc As PDFDocument = New PDFDocument 26 | 27 | End If 28 | End Sub 'btnBrowse_Click 29 | End Class 'EditAttachmentForm 30 | End Namespace 'O2S.Samples.PDFView4NET.FileAttachments 31 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FileAttachments/VBNET/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | FileAttachments.FileAttachmentsForm 5 | false 6 | 0 7 | true 8 | 0 9 | true 10 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FileAttachments/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FileAttachments/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/FieldCheckBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/FieldCheckBox.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/FieldComboBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/FieldComboBox.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/FieldDigitalSignature.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/FieldDigitalSignature.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/FieldListBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/FieldListBox.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/FieldPushButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/FieldPushButton.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/FieldRadioButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/FieldRadioButton.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/FieldTextBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/FieldTextBox.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/Hand16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/CS/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | O2S.Samples.PDFView4NET.FormDesigner.AppForm 5 | false 6 | 0 7 | true 8 | 0 9 | true 10 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldCheckBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldCheckBox.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldComboBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldComboBox.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldDigitalSignature.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldDigitalSignature.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldListBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldListBox.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldPushButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldPushButton.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldRadioButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldRadioButton.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldTextBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/FieldTextBox.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/Hand16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/FormDesigner/VBNET/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormDesigner/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormFill/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormFill/VBNET/AppForm.vb: -------------------------------------------------------------------------------- 1 | Public Class AppForm 2 | 3 | Private Sub AppForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 4 | pdfDoc.FilePath = "..\..\..\..\..\SupportFiles\\pdfform.pdf" 5 | txtFile.Text = "..\..\..\..\..\SupportFiles\\pdfform.pdf" 6 | End Sub 7 | 8 | Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOpen.Click 9 | If ofd.ShowDialog() = Windows.Forms.DialogResult.OK Then 10 | pdfDoc.FilePath = ofd.FileName 11 | txtFile.Text = ofd.FileName 12 | End If 13 | End Sub 14 | 15 | Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click 16 | If sfd.ShowDialog() = Windows.Forms.DialogResult.OK Then 17 | pdfDoc.Save(sfd.FileName) 18 | txtFile.Text = sfd.FileName 19 | End If 20 | End Sub 21 | End Class 22 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/FormFill/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/IncrementalDocumentSearch/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace IncrementalDocumentSearch 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new AppForm()); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /WinForms/.NET Framework/IncrementalDocumentSearch/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PDF2Image/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PDF2Image/VBNET/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.34014 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PDF2Image/VBNET/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 2 9 | true 10 | 11 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PDF2Image/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PDF2Image/VBNET/PDF2Image.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Collections.Generic 3 | Imports System.Text 4 | Imports System.Drawing 5 | Imports System.Drawing.Imaging 6 | Imports O2S.Components.PDFRender4NET 7 | 8 | 9 | Namespace PDF2Image 10 | _ 11 | Class Program 12 | 13 | Overloads Shared Sub Main(ByVal args() As String) 14 | ' Load the PDF file. 15 | Dim file As PDFFile = PDFFile.Open("..\..\..\..\..\SupportFiles\MultiColumnTextAndImages.pdf") 16 | Dim i As Integer 17 | For i = 0 To file.PageCount - 1 18 | ' Convert each page to bitmap and save it. 19 | Dim pageImage As Bitmap = file.GetPageImage(i, 96) 20 | pageImage.Save(String.Format("page{0}.png", i), ImageFormat.Png) 21 | Next i 22 | 23 | file.Dispose() 24 | End Sub 'Main 25 | End Class 'Program 26 | End Namespace 'PDF2Image -------------------------------------------------------------------------------- /WinForms/.NET Framework/PDF2Image/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PrintPDF/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PrintPDF/VBNET/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.34014 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PrintPDF/VBNET/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 2 9 | true 10 | 11 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PrintPDF/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/PrintPDF/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/CS/Resources/RotatePage90Clockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/CS/Resources/RotatePage90Clockwise16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/CS/Resources/RotatePage90CounterClockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/CS/Resources/RotatePage90CounterClockwise16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/CS/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/CS/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/CS/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/CS/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/CS/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/CS/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/VBNET/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/VBNET/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/VBNET/Program.vb: -------------------------------------------------------------------------------- 1 | Imports Microsoft.VisualBasic 2 | Imports System 3 | Imports System.Collections.Generic 4 | Imports System.Windows.Forms 5 | 6 | Namespace RotatePage 7 | Friend NotInheritable Class Program 8 | ''' 9 | ''' The main entry point for the application. 10 | ''' 11 | Private Sub New() 12 | End Sub 13 | _ 14 | Shared Sub Main() 15 | Application.EnableVisualStyles() 16 | Application.SetCompatibleTextRenderingDefault(False) 17 | Application.Run(New AppForm()) 18 | End Sub 19 | End Class 20 | End Namespace -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/VBNET/Resources/RotatePage90Clockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/VBNET/Resources/RotatePage90Clockwise16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/VBNET/Resources/RotatePage90CounterClockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/VBNET/Resources/RotatePage90CounterClockwise16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/VBNET/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/VBNET/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/VBNET/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/VBNET/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/VBNET/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/RotatePage/VBNET/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/RotatePage/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/SearchText/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/SearchText/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplayOneColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplayOneColumn16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplaySinglePage16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplaySinglePage16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplayTwoColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/DisplayTwoColumn16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZOOMIN16.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZOOMIN16.ICO -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomActualSize16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomActualSize16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomDynamic16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomDynamic16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitHeight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitHeight16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitVisible16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitVisible16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitWidth16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomFitWidth16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomMarquee16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomMarquee16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomOut16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/ZoomOut16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/CS/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/CS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Program.vb: -------------------------------------------------------------------------------- 1 | Imports Microsoft.VisualBasic 2 | Imports System 3 | Imports System.Collections.Generic 4 | Imports System.Windows.Forms 5 | 6 | Namespace ZoomAndPageLayout 7 | Friend NotInheritable Class Program 8 | ''' 9 | ''' The main entry point for the application. 10 | ''' 11 | Private Sub New() 12 | End Sub 13 | _ 14 | Shared Sub Main() 15 | Application.EnableVisualStyles() 16 | Application.SetCompatibleTextRenderingDefault(False) 17 | Application.Run(New AppForm()) 18 | End Sub 19 | End Class 20 | End Namespace -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplayOneColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplayOneColumn16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplaySinglePage16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplaySinglePage16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplayTwoColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/DisplayTwoColumn16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZOOMIN16.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZOOMIN16.ICO -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomActualSize16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomActualSize16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomDynamic16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomDynamic16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitHeight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitHeight16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitVisible16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitVisible16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitWidth16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomFitWidth16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomMarquee16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomMarquee16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomOut16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/ZoomOut16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET Framework/ZoomAndPageLayout/VBNET/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET Framework/ZoomAndPageLayout/VBNET/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Annotations.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | Annotations 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace Annotations 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new AppForm()); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationArrow16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationArrow16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationEllipse16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationEllipse16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationFileAttachment16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationFileAttachment16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationFreeText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationFreeText16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationInk16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationInk16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationLine16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationLine16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationLink16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationLink16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationMarkupHighlight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationMarkupHighlight16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationRectangle16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationRectangle16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationStamp16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationStamp16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/AnnotationText16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/AnnotationText16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/FilePrint16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/FilePrint16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/Hand16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/Annotations/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET/Annotations/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WinForms/.NET/Bookmarks/Bookmarks.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | Bookmarks 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WinForms/.NET/Bookmarks/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace O2S.Samples.PDFView4NET.Bookmarks 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new MainForm()); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /WinForms/.NET/Bookmarks/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET/FileAttachments/EditAttachmentForm.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace O2S.Samples.PDFView4NET.FileAttachments 10 | { 11 | public partial class EditAttachmentForm : Form 12 | { 13 | public EditAttachmentForm() 14 | { 15 | InitializeComponent(); 16 | } 17 | 18 | private void btnBrowse_Click(object sender, EventArgs e) 19 | { 20 | if (ofd.ShowDialog() == DialogResult.OK) 21 | { 22 | txtFileName.Text = ofd.FileName; 23 | } 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /WinForms/.NET/FileAttachments/FileAttachments.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | FileAttachments 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WinForms/.NET/FileAttachments/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace O2S.Samples.PDFView4NET.FileAttachments 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new FileAttachmentsForm()); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /WinForms/.NET/FileAttachments/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/FormDesigner.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | FormDesigner 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace FormDesigner 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new AppForm()); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/AnnotationEdit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/AnnotationEdit16.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/FieldCheckBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/FieldCheckBox.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/FieldComboBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/FieldComboBox.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/FieldDigitalSignature.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/FieldDigitalSignature.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/FieldListBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/FieldListBox.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/FieldPushButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/FieldPushButton.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/FieldRadioButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/FieldRadioButton.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/FieldTextBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/FieldTextBox.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/Hand16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/Hand16.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormDesigner/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/FormDesigner/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET/FormFill/FormFill.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | FormFill 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WinForms/.NET/FormFill/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace FormFill 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new AppForm()); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /WinForms/.NET/PDF2Image/PDF2Image.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | PDF2Image 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WinForms/.NET/PDF2Image/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Drawing; 5 | using System.Drawing.Imaging; 6 | using O2S.Components.PDFRender4NET; 7 | 8 | namespace O2S.Samples.PDFView4NET.PDF2Image 9 | { 10 | class Program 11 | { 12 | static void Main(string[] args) 13 | { 14 | // Load the PDF file. 15 | PDFFile file = 16 | PDFFile.Open("..\\..\\..\\..\\..\\..\\SupportFiles\\MultiColumnTextAndImages.pdf"); 17 | // Rendering engine can be changed using the GraphicEngine property. 18 | //file.GraphicEngine = PDFGraphicEngine.GdiPlus; 19 | for (int i = 0; i < file.PageCount; i++) 20 | { 21 | // Convert each page to bitmap and save it. 22 | Bitmap pageImage = file.GetPageImage(i, 96); 23 | pageImage.Save(string.Format("page{0}.png", i), ImageFormat.Png); 24 | } 25 | 26 | file.Dispose(); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /WinForms/.NET/PrintPDF/PrintPDF.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | PrintPDF 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WinForms/.NET/RotatePage/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace RotatePage 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new AppForm()); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /WinForms/.NET/RotatePage/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET/RotatePage/Resources/RotatePage90Clockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/RotatePage/Resources/RotatePage90Clockwise16.ico -------------------------------------------------------------------------------- /WinForms/.NET/RotatePage/Resources/RotatePage90CounterClockwise16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/RotatePage/Resources/RotatePage90CounterClockwise16.ico -------------------------------------------------------------------------------- /WinForms/.NET/RotatePage/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/RotatePage/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WinForms/.NET/RotatePage/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/RotatePage/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET/RotatePage/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/RotatePage/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET/RotatePage/RotatePage.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | RotatePage 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WinForms/.NET/SearchText/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace SearchText 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new AppForm()); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /WinForms/.NET/SearchText/SearchText.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | SearchText 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace ZoomAndPageLayout 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new AppForm()); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/DisplayOneColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/DisplayOneColumn16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/DisplaySinglePage16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/DisplaySinglePage16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/DisplayTwoColumn16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/DisplayTwoColumn16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/ZOOMIN16.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/ZOOMIN16.ICO -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/ZoomActualSize16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/ZoomActualSize16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/ZoomDynamic16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/ZoomDynamic16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/ZoomFitHeight16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/ZoomFitHeight16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/ZoomFitVisible16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/ZoomFitVisible16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/ZoomFitWidth16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/ZoomFitWidth16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/ZoomMarquee16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/ZoomMarquee16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/ZoomOut16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/ZoomOut16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/fileexit16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/fileexit16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/fileopen16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/fileopen16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/Resources/filesave16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2solutions/pdfview4net/91eb20f7b65ce31c423dc44f9d2094476b3e1998/WinForms/.NET/ZoomAndPageLayout/Resources/filesave16.ico -------------------------------------------------------------------------------- /WinForms/.NET/ZoomAndPageLayout/ZoomAndPageLayout.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.0 6 | true 7 | ZoomAndPageLayout 8 | O2 Solutions 9 | PDFView4NET Sample Application 10 | O2 Solutions 11 | O2 Solutions 12 | PDFView4NET for Windows Forms .NET Core 13 | 1.0.0.0 14 | 1.0.0.0 15 | 16 | 17 | 18 | 19 | 20 | 21 | --------------------------------------------------------------------------------