Exemplo n.º 1
0
 public void UpdateBestPossibleLabel(Pokerscore score)
 {
     Dispatcher.BeginInvoke((Action) delegate
     {
         BestPossibleLabel.Text = score.ToNiceString();
     });
 }
Exemplo n.º 2
0
 public void UpdateCurrentScoreLabel(Pokerscore score)
 {
     Dispatcher.BeginInvoke((Action) delegate
     {
         YourScoreLabel.Text = score.ToNiceString();
     });
 }