亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 用c#實現類似qq的簡單通訊程序.htm

?? 用c#實現類似QQ的簡單通訊程序
?? HTM
?? 第 1 頁 / 共 4 頁
字號:
            false;<BR><BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            listenPort += new ThreadStart(this.Listen);<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; lister = new 
            Thread(listenPort);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; this.Closing += new 
            System.ComponentModel.CancelEventHandler(abortLister);<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            Initializenotifyicon();<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; //<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // 
            TODO: 在 InitializeComponent 調用后添加任何構造函數代碼<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; //<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            }<BR>&nbsp; &nbsp; &nbsp; &nbsp; #region 初始化托盤組件<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; private void Initializenotifyicon()<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; {<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            NotifyIcon1 = new NotifyIcon();<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; NotifyIcon1.Icon = img;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; NotifyIcon1.Text = "局域網聊天程序";<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NotifyIcon1.Visible = 
            true;<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            NotifyIcon1.DoubleClick += new 
            EventHandler(this.showMainForm);<BR><BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; MenuItem [] menuArray = new 
            MenuItem[3];<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            menuArray[0] = new MenuItem();<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; menuArray[0].Text = "顯示主窗口";<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; menuArray[0].Click += new 
            EventHandler(this.showMainForm);<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; menuArray[0].DefaultItem = true;<BR><BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; menuArray[1] = new 
            MenuItem("-");<BR><BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; menuArray[2] = new MenuItem();<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; menuArray[2].Text = "退出";<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; menuArray[2].Click += new 
            EventHandler(this.exitSystem);<BR><BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; nMenu = new ContextMenu(menuArray);<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NotifyIcon1.ContextMenu = 
            nMenu;<BR>&nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; &nbsp; &nbsp; 
            <BR>&nbsp; &nbsp; &nbsp; &nbsp; //顯示主窗口<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; private void showMainForm(object sender,System.EventArgs 
            e)<BR>&nbsp; &nbsp; &nbsp; &nbsp; {<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.WindowState = 
            System.Windows.Forms.FormWindowState.Normal; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; <BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            }<BR>&nbsp; &nbsp; &nbsp; &nbsp; //退出程序<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; private void exitSystem(object sender,System.EventArgs 
            e)<BR>&nbsp; &nbsp; &nbsp; &nbsp; {<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; NotifyIcon1.Visible = false;<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.Close();<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; }<BR>&nbsp; &nbsp; &nbsp; &nbsp; #endregion<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; /// &lt;summary&gt;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; /// 清理所有正在使用的資源。<BR>&nbsp; &nbsp; &nbsp; &nbsp; /// 
            &lt;/summary&gt;<BR>&nbsp; &nbsp; &nbsp; &nbsp; protected override 
            void Dispose( bool disposing )<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            {<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if( disposing 
            )<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if 
            (components != null) <BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; {<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; components.Dispose();<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; base.Dispose( disposing ); &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            <BR>&nbsp; &nbsp; &nbsp; &nbsp; }<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            #region Windows 窗體設計器生成的代碼<BR>&nbsp; &nbsp; &nbsp; &nbsp; /// 
            &lt;summary&gt;<BR>&nbsp; &nbsp; &nbsp; &nbsp; /// 設計器支持所需的方法 - 
            不要使用代碼編輯器修改<BR>&nbsp; &nbsp; &nbsp; &nbsp; /// 此方法的內容。<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; /// &lt;/summary&gt;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; private void InitializeComponent()<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; {<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.label1 = new System.Windows.Forms.Label();<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.txtIp = new 
            System.Windows.Forms.TextBox();<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.txtRecord = new 
            System.Windows.Forms.TextBox();<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.label2 = new 
            System.Windows.Forms.Label();<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtName = new 
            System.Windows.Forms.TextBox();<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.btnSend = new 
            System.Windows.Forms.Button();<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtContent = new 
            System.Windows.Forms.TextBox();<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.label3 = new 
            System.Windows.Forms.Label();<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.SuspendLayout();<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; // label1<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.label1.Location = new System.Drawing.Point(16, 232);<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.label1.Name = 
            "label1";<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.label1.Size = new System.Drawing.Size(72, 23);<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.label1.TabIndex = 
            0;<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.label1.Text = "目標地址:";<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.label1.TextAlign = 
            System.Drawing.ContentAlignment.MiddleCenter;<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // txtIp<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtIp.Anchor = 
            ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left 
            | System.Windows.Forms.AnchorStyles.Right)));<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.txtIp.Location = new 
            System.Drawing.Point(80, 232);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtIp.Name = "txtIp";<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.txtIp.Size = new 
            System.Drawing.Size(200, 21);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtIp.TabIndex = 1;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.txtIp.Text = "";<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // txtRecord<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.txtRecord.Anchor = 
            ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left 
            | System.Windows.Forms.AnchorStyles.Right)));<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.txtRecord.Location = new 
            System.Drawing.Point(16, 32);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtRecord.Multiline = true;<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.txtRecord.Name = 
            "txtRecord";<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.txtRecord.ReadOnly = true;<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.txtRecord.ScrollBars = 
            System.Windows.Forms.ScrollBars.Vertical;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.txtRecord.Size = new 
            System.Drawing.Size(264, 176);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtRecord.TabIndex = 4;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.txtRecord.Text = "";<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // label2<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.label2.Location = new 
            System.Drawing.Point(24, 256);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.label2.Name = "label2";<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.label2.Size = new 
            System.Drawing.Size(48, 23);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.label2.TabIndex = 5;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.label2.Text = "呢 稱:";<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.label2.TextAlign = 
            System.Drawing.ContentAlignment.MiddleCenter;<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // txtName<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.txtName.Location = new 
            System.Drawing.Point(80, 256);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtName.Name = "txtName";<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.txtName.Size = new 
            System.Drawing.Size(88, 21);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtName.TabIndex = 6;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.txtName.Text = "";<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // btnSend<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.btnSend.Location = new 
            System.Drawing.Point(200, 256);<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.btnSend.Name = "btnSend";<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.btnSend.Size = new 
            System.Drawing.Size(64, 23);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.btnSend.TabIndex = 0;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.btnSend.Text = "發 送";<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.btnSend.Click += new 
            System.EventHandler(this.btnSend_Click);<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; // txtContent<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtContent.Anchor = 
            ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom 
            | System.Windows.Forms.AnchorStyles.Left) <BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | 
            System.Windows.Forms.AnchorStyles.Right)));<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.txtContent.Location = new 
            System.Drawing.Point(16, 288);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.txtContent.Multiline = true;<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.txtContent.Name = 
            "txtContent";<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.txtContent.Size = new System.Drawing.Size(264, 152);<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.txtContent.TabIndex = 
            8;<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.txtContent.Text = "";<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; // label3<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            // <BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.label3.Anchor = 
            ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top 
            | System.Windows.Forms.AnchorStyles.Left) <BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | 
            System.Windows.Forms.AnchorStyles.Right)));<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.label3.Location = new 
            System.Drawing.Point(16, 8);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.label3.Name = "label3";<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.label3.Size = new 
            System.Drawing.Size(100, 16);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.label3.TabIndex = 9;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.label3.Text = "聊天記錄:";<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.label3.TextAlign = 
            System.Drawing.ContentAlignment.MiddleLeft;<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; // MainForm<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; // <BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.AutoScaleBaseSize = new System.Drawing.Size(6, 
            14);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.ClientSize = new System.Drawing.Size(292, 453);<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.Controls.Add(this.label3);<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.Controls.Add(this.txtContent);<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.Controls.Add(this.btnSend);<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.Controls.Add(this.txtName);<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.Controls.Add(this.label2);<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; this.Controls.Add(this.txtRecord);<BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            this.Controls.Add(this.txtIp);<BR>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; this.Controls.Add(this.label1);<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.Name = "MainForm"; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.Text = "局域網聊天程序";<BR>&nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.Load += new 
            System.EventHandler(this.MainForm_Load);<BR>&nbsp; &nbsp; &nbsp; 
            &nbsp; &nbsp; &nbsp; &nbsp; this.ResumeLayout(false);<BR><BR>&nbsp; 
            &nbsp; &nbsp; &nbsp; }<BR>&nbsp; &nbsp; &nbsp; &nbsp; 
            #endregion<BR>&nbsp; &nbsp; &nbsp; &nbsp; /// 
            &lt;summary&gt;<BR>&nbsp; &nbsp; &nbsp; &nbsp; /// 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产.欧美.日韩| 日韩va亚洲va欧美va久久| www.亚洲在线| 一区免费观看视频| 日本道精品一区二区三区| 日韩欧美在线一区二区三区| 777色狠狠一区二区三区| 国产欧美精品一区二区色综合 | 久久99久久99小草精品免视看| 亚洲一区二区三区小说| 天堂av在线一区| 麻豆视频观看网址久久| 狠狠色丁香九九婷婷综合五月| 成人高清伦理免费影院在线观看| 国产精品1区2区3区在线观看| 91精品国产综合久久小美女| 久久99久久精品欧美| 国产精品久久三区| 欧美人妇做爰xxxⅹ性高电影| 秋霞午夜av一区二区三区| 久久久高清一区二区三区| 91丝袜国产在线播放| 亚洲成人免费av| 精品国产99国产精品| 91久久人澡人人添人人爽欧美| 日韩专区欧美专区| 国产精品全国免费观看高清| 欧美午夜一区二区| 激情文学综合插| 一区二区成人在线视频| 精品福利一二区| 91国偷自产一区二区三区观看 | 欧美性做爰猛烈叫床潮| 免费成人av在线播放| 久久免费午夜影院| 91极品视觉盛宴| 国产91在线观看丝袜| 亚洲第一搞黄网站| 国产精品国产三级国产| 制服丝袜国产精品| 不卡一区二区中文字幕| 美国三级日本三级久久99| 亚洲裸体xxx| 久久嫩草精品久久久精品| 久久精品无码一区二区三区| 欧美三级资源在线| 成人永久看片免费视频天堂| 日韩二区三区在线观看| 亚洲欧美在线另类| 久久婷婷国产综合国色天香| 欧美福利视频一区| 在线视频你懂得一区二区三区| 国产精品自产自拍| 久久精品国产一区二区三| 成人性生交大片免费| 成人免费在线观看入口| 久久奇米777| 99免费精品视频| 中文字幕一区二区三区乱码在线| 国产成人8x视频一区二区| 久久久久88色偷偷免费| 国产福利一区二区三区视频| 18成人在线视频| 欧美午夜精品电影| 五月激情丁香一区二区三区| 顶级嫩模精品视频在线看| 奇米一区二区三区av| 精品一区二区三区蜜桃| 亚洲国产视频a| 亚洲精品视频自拍| 一区二区在线观看不卡| 亚洲男人的天堂在线aⅴ视频| 国产精品久久久久久久久久免费看 | 亚洲电影第三页| 亚洲欧美日韩在线播放| 中文字幕亚洲精品在线观看| 国产精品传媒在线| 最新高清无码专区| 一区二区不卡在线播放| 亚洲欧美激情一区二区| 亚洲精品水蜜桃| 亚洲一级在线观看| 亚洲电影视频在线| 日韩精品三区四区| 久久成人免费网站| 国产精品一区一区三区| 国产福利一区二区三区| 国产69精品久久99不卡| 91在线视频网址| 色网综合在线观看| 欧美日韩国产区一| 欧美一区二区三区四区久久| 欧美一区二区三区免费大片| 日韩午夜电影av| 精品国产免费人成在线观看| 国产日产精品一区| 亚洲精品视频在线观看网站| 无码av免费一区二区三区试看| 免费成人在线观看| 国产超碰在线一区| 91网上在线视频| 5566中文字幕一区二区电影| 精品国产电影一区二区| 中文字幕免费在线观看视频一区| 亚洲色欲色欲www| 午夜精品一区在线观看| 久久99国产精品成人| 不卡电影一区二区三区| 欧美日韩精品一区二区| 久久综合成人精品亚洲另类欧美| 国产精品护士白丝一区av| 性欧美疯狂xxxxbbbb| 国产精品亚洲视频| 欧美亚洲自拍偷拍| 欧美精品aⅴ在线视频| 国产精品网曝门| 蜜臀精品一区二区三区在线观看 | 国产一区91精品张津瑜| 久久草av在线| 93久久精品日日躁夜夜躁欧美| yourporn久久国产精品| 欧美综合色免费| 精品国产乱码久久久久久牛牛| 亚洲综合偷拍欧美一区色| 国产一区二区福利视频| 在线亚洲精品福利网址导航| 精品国产精品网麻豆系列| 一区二区三区高清| 国产一区二区网址| 欧美日韩国产美| 中文字幕乱码亚洲精品一区| 日韩不卡一二三区| 色婷婷综合久色| 国产丝袜美腿一区二区三区| 午夜a成v人精品| 成人黄色国产精品网站大全在线免费观看 | 3d成人动漫网站| 国产精品久久久久桃色tv| 日韩av不卡在线观看| 91亚洲精品久久久蜜桃网站| 久久久亚洲精品石原莉奈| 午夜精品一区二区三区电影天堂| 不卡免费追剧大全电视剧网站| 精品伦理精品一区| 日韩国产成人精品| 欧美日韩一区视频| 亚洲蜜臀av乱码久久精品蜜桃| 国产成人精品网址| 亚洲精品一区二区三区香蕉| 日韩中文字幕麻豆| 欧美日韩国产另类一区| 亚洲精品视频在线看| 北条麻妃国产九九精品视频| 国产欧美视频一区二区三区| 美女视频黄a大片欧美| 91精品国产麻豆| 亚洲成人激情自拍| 欧亚洲嫩模精品一区三区| 综合分类小说区另类春色亚洲小说欧美| 韩国理伦片一区二区三区在线播放| 欧美裸体一区二区三区| 午夜精品久久久久久不卡8050| 色婷婷综合视频在线观看| 免费看欧美女人艹b| 欧美日韩免费视频| 亚洲一区二区三区三| 日本韩国精品在线| 在线亚洲高清视频| 日本不卡高清视频| 国产在线播精品第三| 亚洲国产一区在线观看| 日韩视频一区二区三区在线播放| 国内外成人在线| 一区二区三区欧美在线观看| 欧美日韩在线播放一区| 美美哒免费高清在线观看视频一区二区| 精品成人a区在线观看| 色综合久久九月婷婷色综合| 日韩福利视频网| 亚洲成a人v欧美综合天堂| 日本一区二区不卡视频| 一区二区三区免费在线观看| 在线观看日韩电影| 亚洲一区二区三区激情| 91精品午夜视频| 国产一区二三区| 国产精品免费网站在线观看| 不卡一区在线观看| 一区二区久久久久| 欧美一区二区三区免费观看视频| 久久99久久99精品免视看婷婷| 久久免费美女视频| 色欧美片视频在线观看| 五月激情六月综合| 26uuu另类欧美| 9l国产精品久久久久麻豆| 亚洲成人精品在线观看| xfplay精品久久| 91在线精品一区二区| 日韩中文字幕麻豆|