Write a Winform application that can accept the user to enter Course name, corresponding Teacher’s name and TA’s name. Save the data into the XML. When the user enters a Teacher’s name or a TA’s name to search, the system should show all the courses he/she teaches.
- 首先设计一下 XML 存储格式
DataBase
- 布局界面
左边部分是 添加课程, 右边是根据人名搜索,并且显示在下方的listbox
- 代码部分
代码开头必须引用
// FOR XML
using System.Xml;
using System.Xml.XPath;
using System.IO;
Form加载时候 初始化 XML 文件。
private void Form1_Load(object sender, EventArgs e)
{
// 初始化 XML
initXML();
}
具体代码实现 initXML()。
// initial XML
private void initXML()
{
if (!File.Exists("CourseData.xml")) {
//如果不存在则 创建XML
//构建XmlDocument 对象
XmlDocument doc = new XmlDocument();
//声明
XmlDeclaration declare = doc.CreateXmlDeclaration("1.0", "utf-8", null);
doc.AppendChild(declare);
//创建一个根节点(一级)
XmlElement root = doc.CreateElement("CourseData");
doc.AppendChild(root);
doc.Save("CourseData.xml");
}
}
用户点击添加课程按钮,将数据添加保存在XML文件内。
// 用户点击添加按钮事件
private void addBtn_Click(object sender, EventArgs e)
{
string course = courseTxtBox.Text.Trim();
string lecturer = lecturerTxtBox.Text.Trim();
string ta = taTxtBox.Text.Trim();
if (course == "" || course == null || lecturer == "" || lecturer == null || ta == "" || ta == null)
{
MessageBox.Show("TextBox cannot be empty!");
}
else {
// 调用 添加课程节点方法
addCourseNode(course, lecturer,ta);
}
}
具体实现如何添加到 XML 的 addCourseNode(string course, string lecturer,string ta) 方法
// 添加 Course 节点
private void addCourseNode(string course, string lecturer,string ta) {
//如果存在则 读取xml文件
XmlDocument doc = new XmlDocument();
doc.Load("CourseData.xml");
//先获取到 CourseData 的节点(一级)
XmlNode node = doc.SelectSingleNode("//CourseData");
//变量
//计算当前有多少childnodes
int count = node.ChildNodes.Count + 1;
//创建节点 Course(二级)
XmlElement courseNode = doc.CreateElement("Course");
//创建节点 title (三级)
XmlElement titleNode = doc.CreateElement("title");
// 插入 course title
titleNode.InnerText = course;
//创建节点 teacher(三级)
XmlElement teacherNode = doc.CreateElement("teacher");
// 添加 lecturer 属性 并且赋值
teacherNode.SetAttribute("lecturer", lecturer);
// 添加 ta 属性 并且赋值
teacherNode.SetAttribute("ta", ta);
// courseNode 添加 titleNode节点
courseNode.AppendChild(titleNode);
// courseNode 添加 teacherNode节点
courseNode.AppendChild(teacherNode);
// 父 节点 添加 courseNode 节点
node.AppendChild(courseNode);
// 保存
doc.Save("CourseData.xml");
//弹出消息框提示初始化完毕
MessageBox.Show("添加成功!");
}
点击 搜索按钮事件
// 搜索按钮点击事件
private void searchBtn_Click(object sender, EventArgs e)
{
// 清除 listBox 内容
this.listBox1.Items.Clear();
// 获取 搜索框的 内容
string name = searchTxtBox.Text.Trim();
if (name == "" || name == null)
{
MessageBox.Show("Staff's name cannot be empty!");
}
else {
//找到目标地方 (两个 一个 lecturer 一个 ta)
string lecturer = "//teacher[@lecturer='" + name + "']";
string ta = "//teacher[@ta='" + name + "']";
//读取 XML
XmlDocument doc = new XmlDocument();
doc.Load("CourseData.xml");
// 临时变量存储 course title
string temp;
// 获取 lecturer 所有节点 ( 用户输入的查询的 名字 )
XmlNodeList nodes = doc.SelectNodes(lecturer);
foreach (XmlNode node in nodes) {
// 先找到父节点
XmlNode parent = node.ParentNode;
// 再找到子节点 的第一个,并且获取到 文本
temp = parent.ChildNodes[0].InnerText;
// 添加到 listBox
this.listBox1.Items.Add(temp);
}
// 获取 ta 所有节点 ( 用户输入的查询的 名字 )
nodes = doc.SelectNodes(ta);
foreach (XmlNode node in nodes)
{
// 先找到父节点
XmlNode parent = node.ParentNode;
// 再找到子节点 的第一个,并且获取到 文本
temp = parent.ChildNodes[0].InnerText;
// 添加到 listBox
this.listBox1.Items.Add(temp);
}
if (nodes.Count == 0) {
MessageBox.Show("Cannot Found");
}
}
}
所有 Form.cs 代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
// FOR XML
using System.Xml;
using System.Xml.XPath;
using System.IO;
namespace XMLDemo2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// 初始化 XML
initXML();
}
// initial XML
private void initXML()
{
if (!File.Exists("CourseData.xml")) {
//如果不存在则 创建XML
//构建XmlDocument 对象
XmlDocument doc = new XmlDocument();
//声明
XmlDeclaration declare = doc.CreateXmlDeclaration("1.0", "utf-8", null);
doc.AppendChild(declare);
//创建一个根节点(一级)
XmlElement root = doc.CreateElement("CourseData");
doc.AppendChild(root);
doc.Save("CourseData.xml");
}
}
// 用户点击添加按钮事件
private void addBtn_Click(object sender, EventArgs e)
{
string course = courseTxtBox.Text.Trim();
string lecturer = lecturerTxtBox.Text.Trim();
string ta = taTxtBox.Text.Trim();
if (course == "" || course == null || lecturer == "" || lecturer == null || ta == "" || ta == null)
{
MessageBox.Show("TextBox cannot be empty!");
}
else {
// 调用 添加课程节点方法
addCourseNode(course, lecturer,ta);
}
}
// 添加 Course 节点
private void addCourseNode(string course, string lecturer,string ta) {
//如果存在则 读取xml文件
XmlDocument doc = new XmlDocument();
doc.Load("CourseData.xml");
//先获取到 CourseData 的节点(一级)
XmlNode node = doc.SelectSingleNode("//CourseData");
//变量
//计算当前有多少childnodes
int count = node.ChildNodes.Count + 1;
//创建节点 Course(二级)
XmlElement courseNode = doc.CreateElement("Course");
//创建节点 title (三级)
XmlElement titleNode = doc.CreateElement("title");
// 插入 course title
titleNode.InnerText = course;
//创建节点 teacher(三级)
XmlElement teacherNode = doc.CreateElement("teacher");
// 添加 lecturer 属性 并且赋值
teacherNode.SetAttribute("lecturer", lecturer);
// 添加 ta 属性 并且赋值
teacherNode.SetAttribute("ta", ta);
// courseNode 添加 titleNode节点
courseNode.AppendChild(titleNode);
// courseNode 添加 teacherNode节点
courseNode.AppendChild(teacherNode);
// 父 节点 添加 courseNode 节点
node.AppendChild(courseNode);
// 保存
doc.Save("CourseData.xml");
//弹出消息框提示初始化完毕
MessageBox.Show("添加成功!");
}
// 搜索按钮点击事件
private void searchBtn_Click(object sender, EventArgs e)
{
// 清除 listBox 内容
this.listBox1.Items.Clear();
// 获取 搜索框的 内容
string name = searchTxtBox.Text.Trim();
if (name == "" || name == null)
{
MessageBox.Show("Staff's name cannot be empty!");
}
else {
//找到目标地方 (两个 一个 lecturer 一个 ta)
string lecturer = "//teacher[@lecturer='" + name + "']";
string ta = "//teacher[@ta='" + name + "']";
//读取 XML
XmlDocument doc = new XmlDocument();
doc.Load("CourseData.xml");
// 临时变量存储 course title
string temp;
// 获取 lecturer 所有节点 ( 用户输入的查询的 名字 )
XmlNodeList nodes = doc.SelectNodes(lecturer);
foreach (XmlNode node in nodes) {
// 先找到父节点
XmlNode parent = node.ParentNode;
// 再找到子节点 的第一个,并且获取到 文本
temp = parent.ChildNodes[0].InnerText;
// 添加到 listBox
this.listBox1.Items.Add(temp);
}
// 获取 ta 所有节点 ( 用户输入的查询的 名字 )
nodes = doc.SelectNodes(ta);
foreach (XmlNode node in nodes)
{
// 先找到父节点
XmlNode parent = node.ParentNode;
// 再找到子节点 的第一个,并且获取到 文本
temp = parent.ChildNodes[0].InnerText;
// 添加到 listBox
this.listBox1.Items.Add(temp);
}
if (nodes.Count == 0) {
MessageBox.Show("Cannot Found");
}
}
}
}
}
- 运行效果
XML 文件保存在于 项目文件夹/bin/Debug 或者 项目文件夹/bin/Release
多添加几门课数据量
查询结果 : Maggie
查询结果 : hejing