1 Star 0 Fork 0

冰凌呀/经典推箱子

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SelectForm.cs 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
冰凌呀 提交于 2022-05-06 19:42 . 添加项目文件。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace 经典推箱子
{
/// <summary>
/// 选择关卡窗体
/// </summary>
public partial class SelectForm : Form
{
/// <summary>
/// 选择的关卡序号
/// </summary>
public static int no;
public SelectForm(int no)
{
InitializeComponent();
this.Init();
SelectForm.no = no;
}
private void Init()
{
DirectoryInfo directory = new DirectoryInfo($"Level");
this.Text = $"选择关卡【{1}~{directory.GetFiles().Count()}】";
}
/// <summary>
/// 确定选择
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Button_Ok_Click(object sender, EventArgs e)
{
try
{
SelectForm.no = int.Parse(this.textBox_No.Text.Trim());
this.Close();
}
catch(Exception exception)
{
MessageBox.Show(exception.Message, "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/bingling_ice-cream/classic-sokoban.git
git@gitee.com:bingling_ice-cream/classic-sokoban.git
bingling_ice-cream
classic-sokoban
经典推箱子
master

搜索帮助