About.cs 826 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.IO;
  3. using System.Windows.Forms;
  4. namespace OTSSysMgrApp
  5. {
  6. public partial class About : Form
  7. {
  8. public About()
  9. {
  10. InitializeComponent();
  11. }
  12. private void button1_Click(object sender, EventArgs e)
  13. {
  14. this.Close();
  15. }
  16. private void button2_Click(object sender, EventArgs e)
  17. {
  18. string strPath = Application.StartupPath + "\\Version.txt";
  19. if (File.Exists(strPath))
  20. {
  21. //打开刚才导出的文件
  22. System.Diagnostics.Process.Start(strPath);
  23. }
  24. else
  25. {
  26. MessageBox.Show("找不到版本说明文件!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  27. }
  28. }
  29. }
  30. }