资源简介
C# WinForm读写INI文件
C# WinForm读写INI文件
C# WinForm读写INI文件
C# WinForm读写INI文件
C# WinForm读写INI文件
代码片段和文件信息
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 System.IO;
namespace IniDemo
{
public partial class Form1 : Form
{
public string IP Port AppName Password DBConnectString gameWinRateUpDown killRateUpDown;
public Form1()
{
InitializeComponent();
}
private void btnOK_Click(object sender EventArgs e)
{
IP = txtIP.Text;
Port = txtPort.Text;
AppName = txtAppName.Text;
Password = txtPassword.Text;
DBConnectString = txtDBConnet.Text;
gameWinRateUpDown = GameWinRateUpDown.Text;
killRateUpDown = KillRateUpDown.Text;
StreamWriter sw = new StreamWriter(“game.ini“ false Encoding.GetEncoding(“gb2312“));
sw.Flush();
sw.WriteLine(IP);
sw.WriteLine(Port);
sw.WriteLine(AppName);
sw.WriteLine(Password);
sw.WriteLine(DBConnectString);
sw.WriteLine(gameWinRateUpDown);
sw.WriteLine(killRateUpDown);
sw.Close();
this.Close();
}
private void Form1_Load(object sender EventArgs e)
{
StreamReader sr = new StreamReader(“game.ini“ Encoding.GetEncoding(“gb2312“));
if (sr.Peek() >= 0)
{
txtIP.Text = sr.ReadLine();
txtPort.Text = sr.ReadLine();
txtAppName.Text = sr.ReadLine();
txtPassword.Text = sr.ReadLine();
txtDBConnet.Text = sr.ReadLine();
GameWinRateUpDown.Text = sr.ReadLine();
KillRateUpDown.Text = sr.ReadLine();
}
sr.Close();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 81 2009-03-30 23:50 IniDemo\bin\Debug\game.ini
文件 12288 2009-03-30 23:48 IniDemo\bin\Debug\IniDemo.exe
文件 22016 2009-03-30 23:48 IniDemo\bin\Debug\IniDemo.pdb
文件 14328 2009-03-30 23:51 IniDemo\bin\Debug\IniDemo.vshost.exe
文件 490 2007-07-21 01:33 IniDemo\bin\Debug\IniDemo.vshost.exe.manifest
文件 1940 2009-03-30 23:48 IniDemo\Form1.cs
文件 13040 2009-03-30 23:48 IniDemo\Form1.Designer.cs
文件 5814 2009-03-30 23:48 IniDemo\Form1.resx
文件 3725 2009-03-30 23:48 IniDemo\IniDemo.csproj
文件 556 2009-03-30 23:51 IniDemo\obj\Debug\IniDemo.csproj.FileListAbsolute.txt
文件 847 2009-03-30 23:48 IniDemo\obj\Debug\IniDemo.csproj.GenerateResource.Cache
文件 12288 2009-03-30 23:48 IniDemo\obj\Debug\IniDemo.exe
文件 180 2009-03-30 23:48 IniDemo\obj\Debug\IniDemo.Form1.resources
文件 22016 2009-03-30 23:48 IniDemo\obj\Debug\IniDemo.pdb
文件 180 2009-03-30 23:48 IniDemo\obj\Debug\IniDemo.Properties.Resources.resources
文件 488 2009-03-30 23:40 IniDemo\Program.cs
文件 1346 2009-03-30 23:40 IniDemo\Properties\AssemblyInfo.cs
文件 2864 2009-03-30 23:40 IniDemo\Properties\Resources.Designer.cs
文件 5612 2009-03-30 23:40 IniDemo\Properties\Resources.resx
文件 1092 2009-03-30 23:40 IniDemo\Properties\Settings.Designer.cs
文件 249 2009-03-30 23:40 IniDemo\Properties\Settings.settings
目录 0 2009-03-30 23:40 IniDemo\obj\Debug\TempPE
目录 0 2009-03-30 23:49 IniDemo\bin\Debug
目录 0 2009-03-30 23:48 IniDemo\obj\Debug
目录 0 2009-03-30 23:40 IniDemo\bin
目录 0 2009-03-30 23:40 IniDemo\obj
目录 0 2009-03-30 23:40 IniDemo\Properties
目录 0 2009-03-30 23:48 IniDemo
----------- --------- ---------- ----- ----
121440 28
............此处省略1个文件信息
相关资源
- 一款漂亮的灯光闪烁的圣诞树(C# V
- 用C#绘制正弦曲线,要用到Form1_Resiz
- c# 鼠标绘图 并保存到本地
- 随机抽题系统C#源代码
- c#在线考试系统(附源码)
- C#实现简单的Web打印控件
- FtpClient 组件和源码(c#)
- C#开发实例大全(提高卷)源码
- C# SQL学生选课系统
- C#程序实现动态调用DLL的研究
- 毕业设计_房屋中介系统(C#版)
- C# 制作的带记忆功能计算器
- C#更改Windows防火墙设置实例程序
- C#笔试题大全C#面试集合包括了,.ne
- ASP.NET客户管理系统(毕业设计 C#
- ExcelHelper C#操作Excel的好几种方法
- 在线求职系统(C#ASP.NET源码)
- C#的INI文件读写通用类
- .NET C# Custom Form Designer (附源碼)
- C#动态加载插件示例
- 医院门诊管理系统 aspc#access数据库
- C#用WMP做的四分屏播放器
- C#编写UDP协议的一个局域网简单聊天工
- 医院业务管理系统(C#源代码)
- C#代码生成器(生成MVC三层代码)
- 学生信息管理系统(C# 控制台下)
- C#版蓝牙测试工具
- C#处理png图片位深度和交错属性
- C#冒泡排序动态演示程序(看了就会)
- 远程监控(C#源代码)
评论
共有 条评论