The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: TIC TAC TOE Game in WPF using Expression Blend
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

JokPosted May 13, 2025, 4:39 PM
Private char currentPlayer = 'X'; private void Cell_Click(object sender, RoutedEventArgs e) { Button btn = sender as Button; if (string.IsNullOrEmpty(btn.Content as string)) { btn.Content = currentPlayer.ToString(); currentPlayer = currentPlayer == 'X' ? 'O' : 'X'; } }
Naveen RajPosted Oct 14, 2014, 4:55 AM
very nice