AHTC/RGD/RGD.WCS/FrmAboutBox.cs

18 lines
317 B
C#
Raw Normal View History

2025-05-19 09:22:33 +08:00
using System;
using System.Windows.Forms;
namespace RGD.WCS
{
public partial class FrmAboutBox : Form
{
public FrmAboutBox()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
}
}