• 大小: 0.10M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


p2p点对点聊天程序,下载试试看,很好的程序模式

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Net.Sockets;
using System.Net;
using System.Threading;


namespace P2PExample
{
public partial class FormP2P : Form
{
private Thread myThread;
private TcpListener tcpListener;
private IPAddress myIPAddress;
private int myPort;
private System.Diagnostics.Stopwatch secondWatch;
public FormP2P()
{
    InitializeComponent();
    secondWatch = new System.Diagnostics.Stopwatch();
    ColumnHeader ipColumn = new ColumnHeader();
    ipColumn.Text = “IP地址“;
    ipColumn.Width = 136;
    ColumnHeader portColumn = new ColumnHeader();
    portColumn.Text = “端口号“;
    ColumnHeader onlineColumn = new ColumnHeader();
    onlineColumn.Text = “是否在线“;
    onlineColumn.Width = 71;
    listViewMyFriend.View = View.Details;
    listViewMyFriend.Columns.AddRange(
        new Colum

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      14025  2005-12-23 14:11  P2P点对点聊天\Backup\P2PExample\FormP2P.cs

     文件      15072  2005-12-23 13:47  P2P点对点聊天\Backup\P2PExample\FormP2P.Designer.cs

     文件       6186  2005-12-23 13:45  P2P点对点聊天\Backup\P2PExample\FormP2P.resx

     文件       3237  2005-12-21 22:03  P2P点对点聊天\Backup\P2PExample\P2PExample.csproj

     文件        482  2005-12-21 21:24  P2P点对点聊天\Backup\P2PExample\Program.cs

     文件       1268  2005-12-21 21:22  P2P点对点聊天\Backup\P2PExample\Properties\AssemblyInfo.cs

     文件       2847  2005-12-21 21:22  P2P点对点聊天\Backup\P2PExample\Properties\Resources.Designer.cs

     文件       5612  2005-12-21 21:22  P2P点对点聊天\Backup\P2PExample\Properties\Resources.resx

     文件       1093  2005-12-21 21:22  P2P点对点聊天\Backup\P2PExample\Properties\Settings.Designer.cs

     文件        249  2005-12-21 21:22  P2P点对点聊天\Backup\P2PExample\Properties\Settings.settings

     文件        919  2005-12-21 21:22  P2P点对点聊天\Backup\P2PExample.sln

    ..A..H.     13312  2006-04-19 16:25  P2P点对点聊天\Backup\P2PExample.v11.suo

     文件      19456  2013-10-15 10:57  P2P点对点聊天\P2PExample\bin\Debug\P2PExample.exe

     文件      38400  2013-10-15 10:57  P2P点对点聊天\P2PExample\bin\Debug\P2PExample.pdb

     文件      21464  2013-10-15 11:02  P2P点对点聊天\P2PExample\bin\Debug\P2PExample.vshost.exe

     文件        490  2012-06-06 03:06  P2P点对点聊天\P2PExample\bin\Debug\P2PExample.vshost.exe.manifest

     文件      14025  2005-12-23 14:11  P2P点对点聊天\P2PExample\FormP2P.cs

     文件      15072  2005-12-23 13:47  P2P点对点聊天\P2PExample\FormP2P.Designer.cs

     文件       6186  2005-12-23 13:45  P2P点对点聊天\P2PExample\FormP2P.resx

     文件        789  2013-10-15 10:57  P2P点对点聊天\P2PExample\obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6082  2013-10-15 10:56  P2P点对点聊天\P2PExample\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        756  2013-10-15 11:02  P2P点对点聊天\P2PExample\obj\Debug\P2PExample.csproj.FileListAbsolute.txt

     文件        776  2013-10-15 10:57  P2P点对点聊天\P2PExample\obj\Debug\P2PExample.csproj.GenerateResource.Cache

     文件       1339  2013-10-15 10:57  P2P点对点聊天\P2PExample\obj\Debug\P2PExample.csprojResolveAssemblyReference.cache

     文件      19456  2013-10-15 10:57  P2P点对点聊天\P2PExample\obj\Debug\P2PExample.exe

     文件        180  2013-10-15 10:57  P2P点对点聊天\P2PExample\obj\Debug\P2PExample.FormP2P.resources

     文件      38400  2013-10-15 10:57  P2P点对点聊天\P2PExample\obj\Debug\P2PExample.pdb

     文件        180  2013-10-15 10:57  P2P点对点聊天\P2PExample\obj\Debug\P2PExample.Properties.Resources.resources

     文件       4608  2013-10-15 10:57  P2P点对点聊天\P2PExample\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件        291  2006-04-19 16:25  P2P点对点聊天\P2PExample\obj\P2PExample.csproj.FileList.txt

............此处省略34个文件信息

评论

共有 条评论