123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using UAS_MES.CustomControl;
- using UAS_MES.PublicMethod;
- namespace UAS_MES.Query
- {
- public partial class Query_ShowPDF : Form
- {
- //文件具体地址
- string type = "";
- public Query_ShowPDF(string FileType)
- {
- InitializeComponent();
- type = FileType;
- StartPosition = FormStartPosition.CenterScreen;
- }
- private void Query_ShowPDF_Load(object sender, EventArgs e)
- {
- PDFDocument.FilePath = type;
- }
- private void PDFOperater_KeyDown(object sender, KeyEventArgs e)
- {
- }
- }
- }
|