Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if (btn1.Text == btn2.Text && btn2.Text == btn3.Text && btn1.Text != "")
- {
- return true;
- }
- else if (btn4.Text == btn5.Text && btn5.Text == btn6.Text && btn4.Text != "")
- {
- return true;
- }
- else if (btn7.Text == btn8.Text && btn8.Text == btn9.Text && btn7.Text != "")
- {
- return true;
- }
- else if (btn1.Text == btn4.Text && btn4.Text == btn7.Text && btn1.Text != "")
- {
- return true;
- }
- else if (btn2.Text == btn5.Text && btn5.Text == btn8.Text && btn2.Text != "")
- {
- return true;
- }
- else if (btn3.Text == btn6.Text && btn6.Text == btn9.Text && btn3.Text != "")
- {
- return true;
- }
- else if (btn1.Text == btn5.Text && btn5.Text == btn9.Text && btn1.Text != "")
- {
- return true;
- }
- else if (btn3.Text == btn5.Text && btn5.Text == btn7.Text && btn3.Text != "")
- {
- return true;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement