private void btnCancel_Click(object sender, RoutedEventArgs e)
 {
     cbtnCancel.dePress();
     spawnChat.closeSettings();
     windowTitle = tempTitle;
     chat.selectMsgBox();
 }
Example #2
0
 void client_OnConnect(object sender, EventArgs e)
 {
     cw.selectMsgBox();
     client.JoinChannel(chan);
     cw.AddToChatWindow(6, null, "You have joined channel: " + chan.Substring(1));
     if (identifyToNickServ)
     {
         client.SendMessage(nickservbot, "IDENTIFY " + userpass);
     }
 }