Upload to server
uploading
This commit is contained in:
24
omegapro/Omega/Forms/frmPDFViewer.cs
Normal file
24
omegapro/Omega/Forms/frmPDFViewer.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Omega.Forms
|
||||
{
|
||||
|
||||
public partial class frmPDFViewer : Omega.BasicForms.frmCommon
|
||||
{
|
||||
public string pdffile { get; set; }
|
||||
public frmPDFViewer()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
public override void LoadData()
|
||||
{
|
||||
this.pdfViewer.LoadDocument(pdffile);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user