19 lines
323 B
C#
19 lines
323 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace LargeSquareOne
|
|
{
|
|
public partial class FrmHelper : Form
|
|
{
|
|
public FrmHelper()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void btn_Close_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|