Read XML data from file into DataGrid : XML DataGrid « XML « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » XML » XML DataGridScreenshots 
Read XML data from file into DataGrid
Read XML data from file into DataGrid


using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Xml;

public class Form1 : System.Windows.Forms.Form {
   private System.Windows.Forms.Button btnReadXml;
   private System.Windows.Forms.Button btnWriteXml;
   private System.Windows.Forms.Button btnConfigXml;
   private System.Windows.Forms.DataGrid dataGrid1;
   private System.ComponentModel.Container components = null;

   public Form1() {
      InitializeComponent();
   }

   private void InitializeComponent() {
      this.btnReadXml = new System.Windows.Forms.Button();
      this.btnWriteXml = new System.Windows.Forms.Button();
      this.btnConfigXml = new System.Windows.Forms.Button();
      this.dataGrid1 = new System.Windows.Forms.DataGrid();
      ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
      this.SuspendLayout();

      this.btnReadXml.Location = new System.Drawing.Point(88);
      this.btnReadXml.Name = "btnReadXml";
      this.btnReadXml.TabIndex = 0;
      this.btnReadXml.Text = "Read XML";
      this.btnReadXml.Click += new System.EventHandler(this.btnReadXml_Click);

      this.btnWriteXml.Location = new System.Drawing.Point(848);
      this.btnWriteXml.Name = "btnWriteXml";
      this.btnWriteXml.TabIndex = 1;
      this.btnWriteXml.Text = "Write XML";
      this.btnWriteXml.Click += new System.EventHandler(this.btnWriteXml_Click);

      this.btnConfigXml.Location = new System.Drawing.Point(888);
      this.btnConfigXml.Name = "btnConfigXml";
      this.btnConfigXml.TabIndex = 2;
      this.btnConfigXml.Text = "Config";
      this.btnConfigXml.Click += new System.EventHandler(this.btnConfigXml_Click);

      this.dataGrid1.DataMember = "";
      this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
      this.dataGrid1.Location = new System.Drawing.Point(1048);
      this.dataGrid1.Name = "dataGrid1";
      this.dataGrid1.Size = new System.Drawing.Size(184192);
      this.dataGrid1.TabIndex = 3;

      this.AutoScaleBaseSize = new System.Drawing.Size(513);
      this.ClientSize = new System.Drawing.Size(292272);
      this.Controls.Add(this.dataGrid1);
      this.Controls.Add(this.btnConfigXml);
      this.Controls.Add(this.btnWriteXml);
      this.Controls.Add(this.btnReadXml);
      this.Name = "Form1";
      this.Text = "XML Demo";
      ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
      this.ResumeLayout(false);
   }

   static void Main() {
      Application.Run(new Form1());
   }

   private void btnReadXml_Click(object sender, System.EventArgs e) {
      DataSet ds = new DataSet();
      ds.ReadXml("Employee.xml",XmlReadMode.InferSchema);
      dataGrid1.SetDataBinding(ds, "Employee");
   }

   private void btnWriteXml_Click(object sender, System.EventArgs e) {
      DataSet ds = (DataSetdataGrid1.DataSource;
      ds.WriteXml("XMLFileOut.xml",XmlWriteMode.IgnoreSchema);    
   }

   private void btnConfigXml_Click(object sender, System.EventArgs e) {
      string connString = @"server=(local)\SQLEXPRESS;database=MyDatabase;Integrated Security=SSPI";
      SqlConnection conn = new SqlConnection(connString);

      SqlCommand cmd = new SqlCommand();
      cmd.Connection = conn;
      cmd.CommandText = @"select id,lastname from employee for xml auto";

      try {
         conn.Open();
         XmlReader xmlrdr = cmd.ExecuteXmlReader();
         DataSet ds = new DataSet();
         ds.ReadXml(xmlrdr,XmlReadMode.InferSchema);
         dataGrid1.DataSource=ds;
      catch (SqlException ex) {
         MessageBox.Show (ex.Message);
      finally  {
         conn.Close();
      }
  }
}


/* File: Employee.xml
<?xml version="1.0" standalone="yes"?>
<NewDataSet>
  <employee id="1" lastname="Yin       ">
  </employee>
</NewDataSet>

*/
           
       
Related examples in the same category
1.Save data in DataGrid into XML fileSave data in DataGrid into XML file
2.Load data in database table to XML format and save it to DataGridLoad data in database table to XML format and save it to DataGrid
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.