mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-12-05 00:06:02 +00:00
23 lines
494 B
C#
23 lines
494 B
C#
using Milimoe.FunGame.Desktop.Library.Component;
|
|
|
|
namespace Milimoe.FunGame.Desktop.UI
|
|
{
|
|
public partial class Register : GeneralForm
|
|
{
|
|
public Register()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 关闭窗口
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void ExitButton_Click(object sender, EventArgs e)
|
|
{
|
|
Dispose();
|
|
}
|
|
}
|
|
}
|