c# winform checkbox判断
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# winform checkbox判断相关的知识,希望对你有一定的参考价值。
ListView 里面 第一列checkbox 第二列普通文本值,可重复 □ 123 □ 123 □ 456 □ 789 □ 567 在使用ListView的checked事件 在勾选前判断,如果所对应的第二列的值在其他行被勾选过,就不可以勾选 意思就是第二列有重复的只能勾选一个 √ 123 □ 123 √ 456 √ 789 √ 567 -------------------- □ 123 √ 123 √ 456 √ 789 √ 567
参考技术A 3、采用XmlTextWriter
写入数据,该方法会新建一个或改写现有的xml文件:
XmlTextWriter
xml
=
new
XmlTextWriter(Server.MapPath("/data/test.xml"),
Encoding.UTF-8);
xml.Formatting
=
Formatting.Indented;
xml.WriteStartDocument();
xml.WriteStartElement("books");
xml.WriteStartElement("book");
foreach
(KeyValuePair<string,string>
c
in
source)
xml.WriteStartElement(c.Key);
xml.WriteCData(c.value);
xml.WriteEndElement();
xml.WriteEndElement();
xml.WriteEndElement();
xml.WriteEndDocument();
xml.Flush();
xml.Close();
C#Winform判断文件和路径是否存在
- //选择文件夹
- FolderBrowserDialog dia = new FolderBrowserDialog();
- if (dia.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- string filePath = dia.SelectedPath;
- Directory.Exists(filePath);//判断文件夹是否存在
- }
- //选择文件
- OpenFileDialog dia = new OpenFileDialog();
- if (dia.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- string filePath = dia.SelectedPath;
- File.Exists(filePath);//判断文件是否存在
- }
以上是关于c# winform checkbox判断的主要内容,如果未能解决你的问题,请参考以下文章