提问人:Drikus Barnard 提问时间:10/17/2017 最后编辑:CommunityDrikus Barnard 更新时间:11/17/2017 访问量:63
System.windows.forms 命名空间不存在的聊天客户端
Chat client where System.windows.forms namespace does not exist
问:
我正在 asp.net 上编写一个聊天客户端,并希望使用不存在的 System.windows.forms 命名空间。
我知道您不能在 asp.net 中使用 system.windows.forms 命名空间,但是我如何使用此代码在 asp.net 中编写聊天客户端。
private void GChat_DataReceived(object sender, SimpleTCP.Message e)
{
tbxStatus.Invoke((MethodInvoker)delegate ()
{
if ((e.MessageString) == tbxName.Text + " said: " + tbxMessage.Text + "")
{
tbxStatus.Text += "You said: " + tbxMessage.Text + "\r\n";
tbxMessage.Clear();
tbxStatus.SelectionStart = tbxStatus.Text.Length;
tbxStatus.ScrollToCaret();
if (this.WindowState == FormWindowState.Minimized)
{
this.Hide();
notifyIcon1.ShowBalloonTip(1000, "Bat Signal Activated", "You Have New Messages", ToolTipIcon.Info);
}
}
else
{
tbxStatus.Text += e.MessageString.Remove(e.MessageString.Length -1) + "\r\n";
if (this.WindowState == FormWindowState.Minimized)
{
this.Hide();
notifyIcon1.ShowBalloonTip(1000, "Bat Signal Activated", "You Have New Messages", ToolTipIcon.Info);
}
}
});
}
}
答: 暂无答案
评论