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

            if (handler != null)
            {
                handler(this, e);
            }
        }
Example #2
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";
     protokolTextBox.AppendText("=> Změněn počet hráčů, původní počet: " + e.Pocet + ", nový počet: " + hraci.Pocet + ".\r\n");
 }
Example #3
0
 protected virtual void OnPocetZmenen(PocetEventArgs e)
 {
     PocetZmenenEventHandler handler = PocetZmenen;
       if (handler != null) handler(this, e);
 }
Example #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";
 }
Example #5
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";
     protokolTextBox.AppendText("=> Změněn počet hráčů, původní počet: " + e.Pocet + ", nový počet: " + hraci.Pocet + ".\r\n");
 }