資源簡介
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Text;
using?ESPlus.Application.CustomizeInfo;
using?Core;
namespace?Client
{
????public?class?ClientHandler:?ICustomizeHandler
????{
????????private?Form_Client?clientForm;
????????//該屬性是為了在外部將clientForm注入,之所以不在構造函數中傳入是因為當時clientForm尚未創建
????????public?Form_Client?ClientForm
????????{
????????????get?{?return?clientForm;?}
????????????set?{?clientForm?=?value;?}
????????}
???????
????????public?void?HandleInformation(string?sourceUserID?int?informationType?byte[]?info)
????????{
????????????if?(informationType?==?InformationType.Chat)
???????????{
???????????????if?(this.clientForm.InvokeRequired)?//不是主線程時
???????????????{
???????????????????//轉換為主線程
???????????????????this.clientForm.Invoke(new?ESBa
評論
共有 條評論