Files
LL-28/SLC1-N/Form_BatchSave.cs
2025-11-17 14:10:55 +08:00

33 lines
653 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SLC1_N
{
public partial class Form_BatchSave : Form
{
public Form_BatchSave()
{
InitializeComponent();
}
private void Form_BatchSave_Load(object sender, EventArgs e)
{
}
// 保存
private void bt_Save_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.OK;
this.Close();
}
}
}