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