2025-09-17 20:04:00 +08:00
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|