用C# 如何实现以下功能,:
编辑一个GUI界面,比如说有A, B ,C三个选项,假设有7个xml文件,编号为1,2,3,4,5,6,7。 选择A选项,自动读取1,2,3, B 选项,自动读取2,34,C选项,自动读取5,6,7。 需要具体代码。
希望专家们帮帮忙 详细解答一下
在这儿可以找到xml文件
用C# 如何实现以下功能,:
编辑一个GUI界面,比如说有A, B ,C三个选项,假设有7个xml文件,编号为1,2,3,4,5,6,7。 选择A选项,自动读取1,2,3, B 选项,自动读取2,34,C选项,自动读取5,6,7。 需要具体代码。
希望专家们帮帮忙 详细解答一下
在这儿可以找到xml文件
参考如下代码:
string getxml(string str)
{
string ret = "";
string xmlFile = ".\\xml\\";
if (str == "A选项")
ret = "1.xml";
else if (str == "B选项")
ret = "2.xml";
if (str == "C选项")
ret = "5.xml";
XmlDocument doc = new XmlDocument();
doc.Load(xmlFile + ret);
return ret + "\n" + doc.InnerXml;
XmlNode root = doc.SelectSingleNode("Document");
if (root != null)
return root.InnerXml;
return "";
}
private void button1_Click(object sender, EventArgs e)
{
string msg = "";
if (radioButton1.Checked)
{
msg = radioButton1.Text;
}
else if (radioButton2.Checked)
{
msg = radioButton2.Text;
}
else if (radioButton3.Checked)
{
msg = radioButton3.Text;
}
MessageBox.Show("您选择的是:" + msg + getxml(msg), "提示");
}