KlassenDLL im Main integriert
This commit is contained in:
34
SanSystem/BerichtGen/FrmPDFViewer.cs
Normal file
34
SanSystem/BerichtGen/FrmPDFViewer.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace BerichtGen
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public partial class FrmPDFViewer : Form
|
||||
{
|
||||
string pfad;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="pfad"></param>
|
||||
public FrmPDFViewer(string pfad)
|
||||
{
|
||||
InitializeComponent();
|
||||
this.pfad = pfad;
|
||||
}
|
||||
|
||||
private void FrmPDFViewer_Load(object sender, EventArgs e)
|
||||
{
|
||||
pdfViewerControl.Load(pfad);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user