AboutForm.cs
上传用户:c6x6r6
上传日期:2022-07-31
资源大小:515k
文件大小:1k
源码类别:

波变换

开发平台:

Visual Basic

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace WindowsFormsApplication2
  10. {
  11.     public partial class AboutForm : Form
  12.     {
  13.         public AboutForm()
  14.         {
  15.             InitializeComponent();
  16.         }
  17.         private void label1_Click(object sender, EventArgs e)
  18.         {
  19.         }
  20.         private void button1_Click(object sender, EventArgs e)
  21.         {
  22.             this.Close();
  23.         }
  24.         private void AboutForm_Load(object sender, EventArgs e)
  25.         {
  26.             label1.Text = "ImageManagernn(C) HeJieMingGroup";
  27.         }
  28.     }
  29. }