06 2010 档案

摘要:第一步:创建xml 准备工作: 导入命名空间:System.IO;System.xml 如果要创建如下的xml格式,代码如下 classProgram { staticvoidMain(string[]args) { if(File.Exists("e:\\Books.xml")) { File.Create("e:\\Books.xml"); } try { XmlDocumentxmlDoc=... 阅读全文
posted @ 2010-06-07 10:41 残烟 阅读(8451) 评论(0) 推荐(1)
摘要:这段代码是写在listview_MouseUp事件中的private void listView1_MouseUp(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { WizardBase.IntermediateStep inter = (wizardControl1.WizardSteps[wiz... 阅读全文
posted @ 2010-06-07 10:30 残烟 阅读(6777) 评论(1) 推荐(0)