1 Star 0 Fork 1

LGF/随机点名器_C shap

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Form2.cs 2.02 KB
一键复制 编辑 原始数据 按行查看 历史
薛江彬 提交于 2023-11-26 01:21 . 更新
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");
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/lgf-studio/random-roll-call-machine--c-shap.git
git@gitee.com:lgf-studio/random-roll-call-machine--c-shap.git
lgf-studio
random-roll-call-machine--c-shap
随机点名器_C shap
master

搜索帮助