AboutForm.cs
上传用户:c6x6r6
上传日期:2022-07-31
资源大小:515k
文件大小:1k
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace WindowsFormsApplication2
- {
- public partial class AboutForm : Form
- {
- public AboutForm()
- {
- InitializeComponent();
- }
- private void label1_Click(object sender, EventArgs e)
- {
- }
- private void button1_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- private void AboutForm_Load(object sender, EventArgs e)
- {
- label1.Text = "ImageManagernn(C) HeJieMingGroup";
- }
- }
- }