예제 #1
0
파일: PlayerForm.cs 프로젝트: w0pr/blizztv
 private void OpenChatWindow()
 {
     if (this._chatWindow == null)
     {
         this._chatWindow = new ChatForm(this,this._stream);
         this._chatWindow.FormClosed += ChatWindowClosed;
         this._chatWindow.Show();
     }
     else this._chatWindow.Focus();
 }
예제 #2
0
파일: PlayerForm.cs 프로젝트: w0pr/blizztv
 void ChatWindowClosed(object sender, FormClosedEventArgs e)
 {
     this._chatWindow = null;
 }