FrmAbout.cs
上传用户:sxsgcs
上传日期:2013-10-21
资源大小:110k
文件大小:1k
源码类别:

CAD

开发平台:

C#

  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. }