first commit

This commit is contained in:
ldw
2025-09-17 20:04:00 +08:00
commit 3d8675b65c
310 changed files with 115085 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
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();
}
}
}