コード例 #1
0
 private void ShowBallonForm(string message)
 {
     if (this.InvokeRequired)
     {
         this.Invoke(new CbGeneric <string>(this.ShowBallonForm), message);
     }
     else
     {
         BallonForm ballonForm = new BallonForm();
         ballonForm.ScrollShow(message);
     }
 }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: GamesDesignArt/GGTalk
 private void ShowBallonForm(string message)
 {
     if (this.InvokeRequired)
     {
         this.Invoke(new CbGeneric<string>(this.ShowBallonForm), message);
     }
     else
     {
         BallonForm ballonForm = new BallonForm();
         ballonForm.ScrollShow(message);
     }
 }