FrmAbout.cs
上传用户:sxsgcs
上传日期:2013-10-21
资源大小:110k
文件大小:1k
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace DrawTools
- {
- partial class FrmAbout : Form
- {
- public FrmAbout()
- {
- InitializeComponent();
- }
- private void FrmAbout_Load(object sender, EventArgs e)
- {
- this.Text = "About " + Application.ProductName;
- lblText.Text = "Program: " + Application.ProductName + "n" +
- "Version: " + Application.ProductVersion;
- }
- private void btnOK_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }