Document Library for WinForms
クイックスタート
PdfDocumentSource for WinForms > クイックスタート

This Quick Start guides you through a step-by-step process of creating a simple application for loading a PDF document using PdfDocumentSource and viewing it in FlexViewer, a lightweight viewer control.

次の図に、FlexViewer にロードされた PDF ドキュメントを示します。

Load and view document using designer

To load and view a PDF document using the PdfDocumentSource component and FlexViewer control, follow the steps below:

  1. 新しい WinForms アプリケーションを作成します。
  2. ツールボックスに移動し、FlexViewer コントロールをフォームにドラッグアンドドロップします。必要に応じて、FlexViewer の位置とサイズを調整します。
  3. PdfDocumentSource コントロールをフォームにドラッグアンドドロップします。コントロールがフォームのコンポーネントトレイに表示されます。
  4. プロパティウィンドウで、FlexViewerのプロパティに移動し、DocumentSourceプロパティ値のフィールドにPdfDocumentSourceコンポーネントの名前を割り当てます。This property gets the PDF document source shown by FlexViewer.
  5. Select PdfDocumentSource component and navigate to its properties in the Properties window. Add the full path of the PDF document to the DocumentLocation property. This fetches the location of the document in the PdfDocumentSource component.
  6. アプリケーションをビルドし、実行します。PDF が FlexViewer コントロールにレンダリングされます。

Load and view document using code

To load and view a PDF document using the PdfDocumentSource component and FlexViewer control, follow the steps below:

手順 1:アプリケーションの設定

  1. 新しい WinForms アプリケーションを作成します。
  2. FlexViewer をフォームにドラッグアンドドロップします。
  3. Add a PDF document to the project.

手順 2:FlexViewer への PDF ファイルのロード

  1. コードビューに切り替えて、次の名前空間を追加します。
    C#
    コードのコピー
    using C1.Win.Document;
    
  2. フォームをダブルクリックし、Form_Load イベントに次のコードを記述して、C1PdfDocumentSource のインスタンスを作成します。 そして、LoadFromFile メソッドを使用して PDF ファイルをロードします。
    C#
    コードのコピー
    C1PdfDocumentSource pds = new C1PdfDocumentSource();
    pds.LoadFromFile(@"..\..\DefaultDocument.pdf");
    
  3. DocumentSource プロパティを使用して、FlexViewer コントロールに PDF ファイルをレンダリングします。
    C#
    コードのコピー
    flexViewer.DocumentSource = pds;
    

手順 3:プロジェクトのビルドおよび実行

  1. Ctrl]+[Shift]+[B]キーを押してプロジェクトをビルドします。
  2. F5]キーを押してアプリケーションを実行します。