FrmAbout.cs 701 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace DrawTools
  9. {
  10. partial class FrmAbout : Form
  11. {
  12. public FrmAbout()
  13. {
  14. InitializeComponent();
  15. }
  16. private void FrmAbout_Load(object sender, EventArgs e)
  17. {
  18. this.Text = "About " + Application.ProductName;
  19. lblText.Text = "Program: " + Application.ProductName + "\n" +
  20. "Version: " + Application.ProductVersion;
  21. }
  22. private void btnOK_Click(object sender, EventArgs e)
  23. {
  24. this.Close();
  25. }
  26. }
  27. }