❶ 如何写配置文件
配置文件可以是任何形式,可以是xml或者txt都行,比如数据库的连接配置
比如:
<?xml version="1.0" standalone="yes"?>//这句一定要有,下面的你随意写
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
<connectionStrings>
<add name="DBConnectionString" connectionString="Data Source=192.168.118.21;Initial Catalog=PreMix;User Id =sa;Password =sa" providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>
这就是个配置文件,在winform里面直接用DataSet的ReadXml()方法就能读取到里面的值
❷ C# winform 想动态修改config文件,config里面没有变呢
额。。。你是要改原始配置文件?
你上面的代码改的是xx.vshost.exe.config(而不是xx.exe.config),Configuration没有提供直接改原始专配置文件的方法,如果属你非要改,只能用File去处理这个文件(而且只能下次才生效了,因为这次启动后,程序读取的就只有xx.vshost.exe.config
❸ C# 怎么保存WinForm应用程序的配置
供参考:
1.自定义一个配置文件(.config/.txt),比如:在BIN目录下生成一个setting.config,通过winform界面把配置参数全部保存到这里面来。
2.保存到app.config中,可以把一些配置参数保存到app.config,这样在窗体编译的时候,app.config
会自动生成到BIN目录下。
3.保存到数据库指定的表,比如:D_DataBase/T_Setting表,可以通过winform界面把参数全部保存到数据库指定的表中。
4.保存到注册表中。
❹ c# winform 我需要用户设置的图片保存路径 保存到ini 或者是xml中
引用命名空间using System.Xml;
folderBrowserDialog指定路径代码:在一个按钮单击事件中:
folderBrowserDialog1.ShowDialog();
textBox1.Text=folderBrowserDialog1.SelectedPath;
//存储
XmlDocument xml = new XmlDocument();
//创建根节点
XmlElement root= xml.CreateElement("root");
xml.AppendChild(root);
//创建filepath节点
XmlElement filepath = xml.CreateElement("filepath");
filepath.InnerText = textBox1.Text;
root.AppendChild(filepath);
xml.Save("路径.xml");
//在另一个事件中读取
XmlDocument xml = new XmlDocument();
xml.Load("路径.xml");
XmlNodeList list = xml.SelectSingleNode("root").ChildNodes;
//取出存储的路径
MessageBox.Show(list[0].InnerText);