using DevExpress.XtraEditors; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Ips.Sps.Helps { public partial class HelpForm : DevExpress.XtraEditors.XtraForm { public HelpForm() { InitializeComponent(); } private void HelpForm_Load(object sender, EventArgs e) { string helpFile = Path.Combine(Application.StartupPath, "AppData", "Documents", "定位实验平台-软件使用维护说明.pdf"); pdfViewerHelp.LoadDocument(helpFile); } } }