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