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

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.Net;
  8. using System.IO;
  9. namespace Wrox.ProCSharp.InternetAccess.WebClientExample
  10. {
  11. /// <summary>
  12. /// Summary description for Form1.
  13. /// </summary>
  14. public class Form1 : System.Windows.Forms.Form
  15. {
  16. private System.Windows.Forms.ListBox listBox1;
  17. /// <summary>
  18. /// Required designer variable.
  19. /// </summary>
  20. private System.ComponentModel.Container components = null;
  21. public Form1()
  22. {
  23. InitializeComponent();
  24. System.Net.WebClient Client = new WebClient();
  25. Stream strm = Client.OpenRead("http://www.wrox.com");
  26. StreamReader sr = new StreamReader(strm);
  27. string line;
  28. while ( (line=sr.ReadLine()) != null )
  29.                 {
  30. listBox1.Items.Add(line);
  31.    
  32. strm.Close();
  33. }
  34. //
  35. // TODO: Add any constructor code after InitializeComponent call
  36. //
  37. /// <summary>
  38. /// Clean up any resources being used.
  39. /// </summary>
  40. protected override void Dispose( bool disposing )
  41. {
  42. if( disposing )
  43. {
  44. if (components != null) 
  45. {
  46. components.Dispose();
  47. }
  48. }
  49. base.Dispose( disposing );
  50. }
  51. #region Windows Form Designer generated code
  52. /// <summary>
  53. /// Required method for Designer support - do not modify
  54. /// the contents of this method with the code editor.
  55. /// </summary>
  56. private void InitializeComponent()
  57. {
  58. this.listBox1 = new System.Windows.Forms.ListBox();
  59. this.SuspendLayout();
  60. // 
  61. // listBox1
  62. // 
  63. this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  64. this.listBox1.Name = "listBox1";
  65. this.listBox1.Size = new System.Drawing.Size(292, 264);
  66. this.listBox1.TabIndex = 0;
  67. // 
  68. // Form1
  69. // 
  70. this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
  71. this.ClientSize = new System.Drawing.Size(292, 273);
  72. this.Controls.AddRange(new System.Windows.Forms.Control[] {
  73.   this.listBox1});
  74. this.Name = "Form1";
  75. this.Text = "Form1";
  76. this.ResumeLayout(false);
  77. }
  78. #endregion
  79. /// <summary>
  80. /// The main entry point for the application.
  81. /// </summary>
  82. [STAThread]
  83. static void Main() 
  84. {
  85. Application.Run(new Form1());
  86. }
  87. }
  88. }