18 lines
317 B
C#
18 lines
317 B
C#
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();
|
|
}
|
|
}
|
|
} |