}
/**//// <summary>
/// 加载xml文件到私有对象dox
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button4_Click(object sender, System.EventArgs e)
{
string strFileName;
openFileDialog1.Filter = "xml 文件|*.xml" ;
openFileDialog1.FilterIndex = 1;
openFileDialog1.FileName = "";
openFileDialog1.ShowDialog();
strFileName = openFileDialog1.FileName;
//If the user does not cancel, open the document.
if(strFileName.Length != 0)
{
doc=new XmlDocument();
doc.Load(strFileName);
MessageBox.Show("加载成功");
}
}
}
}
http://www.cnblogs.com/skylaugh/archive/2006/12/18/595654.html
评论加载中…
![]() |