HelpForm.cs 731 B

12345678910111213141516171819202122232425262728
  1. using DevExpress.XtraEditors;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.IO;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using System.Windows.Forms;
  12. namespace Ips.Sps.Helps
  13. {
  14. public partial class HelpForm : DevExpress.XtraEditors.XtraForm
  15. {
  16. public HelpForm()
  17. {
  18. InitializeComponent();
  19. }
  20. private void HelpForm_Load(object sender, EventArgs e)
  21. {
  22. string helpFile = Path.Combine(Application.StartupPath, "AppData", "Documents", "定位实验平台-软件使用维护说明.pdf");
  23. pdfViewerHelp.LoadDocument(helpFile);
  24. }
  25. }
  26. }