部分内容为学习过程中从网上搜集保存备份,以防源网站关闭后无法检索。如有涉及版权请留言,看到后处理

winform使用xml作为数据源

1、新建窗体应用程序

2、拖放DataGridView

3、在bin\Debug中放入XML文件

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            DataSet ds = new DataSet();
            ds.ReadXml("PERSON.XML");
            dataGridView1.DataSource = ds.Tables["student"].DefaultView;
        }
    }
}

 

posted @ 2015-08-10 05:26  Y档案Y  阅读(276)  评论(0编辑  收藏  举报