C#实现网络点对点具体步骤

C#有很多值得学习的地方,这里我们主要介绍C#实现网络点对点具体步骤,包括介绍Visual Studio .Net集成开发环境等方面。

C#实现网络点对点具体步骤:

在了解、掌握了关键问题及其解决方法,再实现用Visual C#实现网络点对点通讯程序相对就容易许多,下面是具体的实现步骤:

1.启动Visual Studio .Net,并新建一个Visual C#项目,名称为(Visual C#实现网络点对点通讯程序)。

2.在Visual Studio .Net集成开发环境中的(解决方案资源管理器)窗口中,双击Form1.cs文件,进入Form1.cs文件的编辑界面。

3.在Form1.cs文件的开头,用下列导入命名空间代码替代系统缺省的导入命名空间代码。

 
 
 
  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.Sockets ;
  8. using System.Net ;
  9. using System.IO ;
  10. using System.Text ;
  11. using System.Threading ;

4.再把Visual Studio.Net的当前窗口切换到(Form1.cs(设计))窗口,并从(工具箱)中的(Windows窗体组件)选项卡中往窗体中拖入下列组件:

四个Button组件;二个ListBox组件;四个TextBox组件;一个StatusBar组件;五个Label组件。并在四个Button组件拖入窗体后,分别在窗体设计界面中双击它们,则系统会在Form1.cs文件中分别产生这四个组件的Click事件对应的处理代码。

5.在(解决方案资源管理器)窗口中,双击Form1.cs文件,进入Form1.cs文件的编辑界面。以下面代码替代系统产生的InitializeComponent过程。下面代码是对上面添加的组件进行初始化:

 
 
 
  1. private void InitializeComponent ( )
  2. {
  3. this.listBox1 = new System.Windows.Forms.ListBox ( ) ;
  4. this.textBox1 = new System.Windows.Forms.TextBox ( ) ;
  5. this.label3 = new System.Windows.Forms.Label ( ) ;
  6. this.label2 = new System.Windows.Forms.Label ( ) ;
  7. this.textBox3 = new System.Windows.Forms.TextBox ( ) ;
  8. this.button1 = new System.Windows.Forms.Button ( ) ;
  9. this.textBox2 = new System.Windows.Forms.TextBox ( ) ;
  10. this.label1 = new System.Windows.Forms.Label ( ) ;
  11. this.label4 = new System.Windows.Forms.Label ( ) ;
  12. this.label5 = new System.Windows.Forms.Label ( ) ;
  13. this.button2 = new System.Windows.Forms.Button ( ) ;
  14. this.button3 = new System.Windows.Forms.Button ( ) ;
  15. this.button4 = new System.Windows.Forms.Button ( ) ;
  16. this.textBox4 = new System.Windows.Forms.TextBox ( ) ;
  17. this.statusBar1 = new System.Windows.Forms.StatusBar ( ) ;
  18. this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel( );
  19. this.statusBarPanel2 = new System.Windows.Forms.StatusBarPanel( );
  20. this.label6 = new System.Windows.Forms.Label ( ) ;
  21. this.listBox2 = new System.Windows.Forms.ListBox ( ) ;
  22. ( ( System.ComponentModel.ISupportInitialize )
  23. ( this.statusBarPanel1 ) ).BeginInit ( ) ;
  24. ( ( System.ComponentModel.ISupportInitialize )
  25. ( this.statusBarPanel2 ) ).BeginInit ( ) ;
  26. this.SuspendLayout ( ) ;
  27. this.listBox1.ItemHeight = 12 ;
  28. this.listBox1.Location = new System.Drawing.Point ( 122 , 110 ) ;
  29. this.listBox1.Name = "listBox1" ;
  30. this.listBox1.Size = new System.Drawing.Size ( 212 , 88 ) ;
  31. this.listBox1.TabIndex = 4 ;
  32. this.textBox1.Location = new System.Drawing.Point ( 122 , 18 ) ;
  33. this.textBox1.Name = "textBox1" ;
  34. this.textBox1.Size = new System.Drawing.Size ( 210 , 21 ) ;
  35. this.textBox1.TabIndex = 1 ;
  36. this.textBox1.Text = "" ;
  37. this.label3.Location = new System.Drawing.Point ( 220 , 52 ) ;
  38. this.label3.Na 

本文标题:C#实现网络点对点具体步骤
文章URL:http://www.csdahua.cn/qtweb/news15/440115.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网