C#: Online Guide
How To: Windows Viewer SDK
Install, Deploy and Distribution
  |  
Home ›› XDoc.Windows Viewer ›› C# Windows Viewer: Install, Deploy and Distribute

How to C#: Install, Deploy and Distribute XDoc.Windows Viewer


Online C# Guide for XDoc.Windows Viewer Installation, Deployment and Distribution




There are two parts on this page, including system requirements for using XDoc.Windows Viewer, and how to install XDoc.Windows Viewer into visual studio C# .NET Application.



Related .net document control helps:
asp.net azure pdf editor using c#: ASP.NET Azure PDF Editor Control: view, edit, annotate, redact PDF files online
c# asp.net dicom document viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET
asp.net document viewer in c#: EdgeDoc ASP.NET Document Viewer C# Control: Open, view, annotate, redact, convert documents online using ASP.NET Web Con...
c# asp.net powerpoint document viewer: ASP.NET PowerPoint Document Viewer Control: view pptx files online in C# using ASP.NET
asp.net pdf viewer using c#: ASP.NET PDF Viewer Control: view, navigate, zoom Adobe PDF document in C# ASP.NET
c# asp.net iis document viewer: C# HTML5 Viewer: Deployment on IIS
c# asp.net text document viewer: C# HTML5 Viewer: Load, View, Convert, Annotate and Edit OpenOffice, CSV and Text file


System Requirements



Windows XP SP3 or later


Microsoft .NET Framework 2.0 or later




Install XDoc.Windows Viewer in C# Project



If you want to try how to add annotation to image and document, you can download our trial version product viewer. Please click here Windows Viewer Demo.


Add necessary references to your C#.NET project. Right-click the project and select "Add Reference..." to locate and add the following DLLs as project references;


  RasterEdge.Imaging.Annotation.dll


  RasterEdge.Imaging.Basic.Codec.dll


  RasterEdge.Imaging.Basic.dll


  RasterEdge.Imaging.DICOM.dll


  RasterEdge.Imaging.Drawing.dll


  RasterEdge.Imaging.Font.dll


  RasterEdge.Imaging.JBIG2.dll


  RasterEdge.Imaging.JPEG2000.dll


  RasterEdge.Imaging.Processing.dll


  RasterEdge.XDoc.Excel.dll


  RasterEdge.XDoc.Office.Inner.Common.dll


  RasterEdge.XDoc.Office.Inner.Office03.dll


  RasterEdge.XDoc.PDF.dll


  RasterEdge.XDoc.PowerPoint.dll


  RasterEdge.XDoc.TIFF.dll


  RasterEdge.XDoc.WindowsViewer.dll


  RasterEdge.XDoc.Word.dll


  RasterEdge.XImage.AdvancedCleanup.Core.dll


  RasterEdge.XImage.BarcodeScanner.dll


  RasterEdge.XImage.OCR.dll


  RasterEdge.XImage.OCR.Tesseract.dll


  RasterEdge.XImage.Raster.Core.dll


  RasterEdge.XImage.Raster.dll


Use corresponding namespaces;


  using RasterEdge.XDoc.WindowsViewer;


With the Windows Viewer Demo, you can try the annotation type such as Text, Freehand, Line, Polygon Line, Filled Rectangle, Rectangle, HightLight, Ellipse, Polygon, RubberStamp and so on.


Also, using the Windows Viewer, you can add and delete annotations freely. The following demo code will show how to create a windows viewer form quickly.




/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
      WindowsViewerForm windows = new WindowsViewerForm();
      windows.ShowDialog();
}