Files
ClientServerProject/软件系统客户端模版/UIControls/OnlineChatRender.cs

31 lines
644 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace .UIControls
{
public partial class OnlineChatRender : UserControl
{
public OnlineChatRender()
{
InitializeComponent();
}
private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
//按下Enter键后进行发送数据到服务器
}
private void OnlineChatRender_Load(object sender, EventArgs e)
{
}
}
}