예제 #1
0
        protected virtual void OnPocetZmenen(PocetEventArgs e)
        {
            PocetZmenenEventHandler handler = PocetZmenen;

            if (handler != null)
            {
                handler(this, e);
            }
        }
예제 #2
0
파일: Form1.cs 프로젝트: WinduIVS/INPTP
 void hraci_PocetZmenen(object sender, PocetEventArgs e)
 {
     //protokolTextBox.Text += "=> Změněn počet hráčů, původní počet: " + e.Pocet + ", nový počet: " + hraci.Pocet + ".\r\n";
     protokolTextBox.AppendText("=> Změněn počet hráčů, původní počet: " + e.Pocet + ", nový počet: " + hraci.Pocet + ".\r\n");
 }
예제 #3
0
파일: Hraci.cs 프로젝트: pepiczech/INPTP
 protected virtual void OnPocetZmenen(PocetEventArgs e)
 {
     PocetZmenenEventHandler handler = PocetZmenen;
       if (handler != null) handler(this, e);
 }
예제 #4
0
 void hraci_PocetZmenen(object sender, PocetEventArgs e)
 {
     protokolTextBox.Text += "Změněn počet hráčů. Původní počet: " + e.Pocet + ", nový počet: " + hraci.Pocet + "\r\n";
 }
예제 #5
0
파일: Form1.cs 프로젝트: pepiczech/INPTP
 void hraci_PocetZmenen(object sender, PocetEventArgs e)
 {
     //protokolTextBox.Text += "=> Změněn počet hráčů, původní počet: " + e.Pocet + ", nový počet: " + hraci.Pocet + ".\r\n";
     protokolTextBox.AppendText("=> Změněn počet hráčů, původní počet: " + e.Pocet + ", nový počet: " + hraci.Pocet + ".\r\n");
 }