代码拉取完成,页面将自动刷新
同步操作将从 薛江彬/随机点名器_C shap 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using suijidian;
using static System.Net.Mime.MediaTypeNames;
namespace suijidian
{
public partial class Form2 : Form
{
IniFile iniFile;
string filePath;
public Form2()
{
InitializeComponent();
filePath = "./set.ini";
iniFile = new IniFile(filePath);
textBox1zu.Text = iniFile.GetValue("set", "zu");
textBox2hao.Text = iniFile.GetValue("set", "hao");
if (Form1.buchongfuzu == "1")
{
checkBox1.Checked = true;
}
}
private void button1_Click(object sender, EventArgs e)
{
// 使用int.TryParse()方法进行转换(如果转换失败,number的值将为0)
bool success = int.TryParse(textBox1zu.Text, out Form1.numzu_man);
bool success1 = int.TryParse(textBox2hao.Text, out Form1.numhao_max);
if (success && success1)
{
}
else
{
// 转换失败,处理转换失败的情况
Console.WriteLine("保存失败,组数和号数无法转换");
}
//写入
iniFile.SetValue("set", "zu", textBox1zu.Text);
iniFile.SetValue("set", "hao", textBox2hao.Text);
MessageBox.Show("保存成功");
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (checkBox1.Checked)
{
iniFile.SetValue("set", "buchongfuzu", "1");
Form1.buchongfuzu = "1";
Console.WriteLine("1");
}
else {
iniFile.SetValue("set", "buchongfuzu", "0");
Form1.buchongfuzu = "0";
Console.WriteLine("0");
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。