示例#1
0
文件: MainForm.cs 项目: dwing4g/limax
 public void closeChatRoom()
 {
     currentChatRoomForm = null;
     checkButtonJoinEnabled();
 }
示例#2
0
文件: MainForm.cs 项目: dwing4g/limax
 public ChatRoom showChatRoom(chat.chatclient.chatviews.ChatRoom view)
 {
     currentChatRoomForm = new ChatRoom(view);
     currentChatRoomForm.Show();
     return(currentChatRoomForm);
 }