Files
csharpcode/omegapro/Omega/Forms/frmPDFViewer.cs
2025-08-02 05:20:17 +07:00

25 lines
523 B
C#

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);
}
}
}