public void UpdateBestPossibleLabel(Pokerscore score) { Dispatcher.BeginInvoke((Action) delegate { BestPossibleLabel.Text = score.ToNiceString(); }); }
public void UpdateCurrentScoreLabel(Pokerscore score) { Dispatcher.BeginInvoke((Action) delegate { YourScoreLabel.Text = score.ToNiceString(); }); }