本帖最后由 刘钰 于 2012-9-25 08:12 编辑
发送消息时做一个类似QQ的ctrl+enter发送的功能
if (e.Control == true && e.KeyValue == 13)
{
string str = textBox4.Text + "\n";
byte[] arrstr = System.Text.Encoding.UTF8.GetBytes(str);
newSocket.Send(arrstr);
textBox3.AppendText(str + "\n");
textBox4.Clear();
textBox4.Focus();
}
但是同时enter的换行功能也会被触发 导致发出一条信息后光标会出现在第二行,求解决 |