25111701 参数设置添加批量通道配置功能;登陆界面添加超级管理员密码添加功能。

This commit is contained in:
moxiliang
2025-11-17 17:04:39 +08:00
parent 2e5ea8848d
commit de7adcb3ae
42 changed files with 837 additions and 512 deletions

32
SLC1-N/Form_BatchSave.cs Normal file
View File

@@ -0,0 +1,32 @@
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();
}
}
}