XmlReaderSample4.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:3k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using System.Data;
  7. using System.IO;
  8. using System.Xml;
  9. namespace Wrox.ProCSharp.Xml.XmlReaderSample4
  10. {
  11. /// <summary>
  12. /// Summary description for Form1.
  13. /// </summary>
  14. public class Form1 : System.Windows.Forms.Form
  15. {
  16. private System.Windows.Forms.Button button1;
  17. private System.Windows.Forms.ListBox listBox1;
  18. /// <summary>
  19. /// Required designer variable.
  20. /// </summary>
  21. private System.ComponentModel.Container components = null;
  22. public Form1()
  23. {
  24. //
  25. // Required for Windows Form Designer support
  26. //
  27. InitializeComponent();
  28. //
  29. // TODO: Add any constructor code after InitializeComponent call
  30. //
  31. }
  32. /// <summary>
  33. /// Clean up any resources being used.
  34. /// </summary>
  35. protected override void Dispose( bool disposing )
  36. {
  37. if( disposing )
  38. {
  39. if (components != null) 
  40. {
  41. components.Dispose();
  42. }
  43. }
  44. base.Dispose( disposing );
  45. }
  46. #region Windows Form Designer generated code
  47. /// <summary>
  48. /// Required method for Designer support - do not modify
  49. /// the contents of this method with the code editor.
  50. /// </summary>
  51. private void InitializeComponent()
  52. {
  53. this.button1 = new System.Windows.Forms.Button();
  54. this.listBox1 = new System.Windows.Forms.ListBox();
  55. this.SuspendLayout();
  56. // 
  57. // button1
  58. // 
  59. this.button1.Location = new System.Drawing.Point(40, 256);
  60. this.button1.Name = "button1";
  61. this.button1.Size = new System.Drawing.Size(200, 24);
  62. this.button1.TabIndex = 1;
  63. this.button1.Text = "Load XML";
  64. this.button1.Click += new System.EventHandler(this.button1_Click);
  65. // 
  66. // listBox1
  67. // 
  68. this.listBox1.Location = new System.Drawing.Point(24, 16);
  69. this.listBox1.Name = "listBox1";
  70. this.listBox1.Size = new System.Drawing.Size(232, 225);
  71. this.listBox1.TabIndex = 0;
  72. // 
  73. // Form1
  74. // 
  75. this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
  76. this.ClientSize = new System.Drawing.Size(288, 293);
  77. this.Controls.AddRange(new System.Windows.Forms.Control[] {
  78.   this.listBox1,
  79.   this.button1});
  80. this.Name = "Form1";
  81. this.Text = "Form1";
  82. this.ResumeLayout(false);
  83. }
  84. #endregion
  85. /// <summary>
  86. /// The main entry point for the application.
  87. /// </summary>
  88. [STAThread]
  89. static void Main() 
  90. {
  91. Application.Run(new Form1());
  92. }
  93.   
  94. // XmlReaderSample4/form.cs
  95. protected void button1_Click (object sender, System.EventArgs e)
  96. {
  97. //set this path to match your data path structure
  98. string fileName = "..\..\..\books.xml";
  99. //Create the new TextReader Object
  100. XmlTextReader tr = new XmlTextReader(fileName);
  101. //Read in node at a time        
  102. while(tr.Read()) 
  103. {
  104. //check to see if it's a NodeType element
  105. if(tr.NodeType == XmlNodeType.Element)  
  106. {
  107. //if it's an element, then let's look at the attributes.
  108. for(int i=0;i<tr.AttributeCount;i++)  
  109. {
  110. listBox1.Items.Add(tr.GetAttribute(i));
  111. }
  112. }
  113. }
  114.   
  115. }
  116. }