Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8608009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T03:30:25+00:00 2026-06-12T03:30:25+00:00

I am trying to make a Tic Tac Toe game in Silverlight that can

  • 0

I am trying to make a Tic Tac Toe game in Silverlight that can be played in 1 player mode.
So for that after clicking on any button and change it’s content to “X” or “O” i need to change the content of a random button.

I’ve tried making a list of all buttons and getting a random value:

    public List<string> avail = new List<string>() { "button1", "button2", "button3", "button4", "button5", "button6", "button7", "button8", "button9" };

    public string Ran()
    {
        Random b1 = new Random();
        int index = b1.Next(avail.Count); 
        if (index > 0)
            return avail[index];
        else
            return null;
    }

but i don’t know how to make my random string a Button so i can call the following method:

    public void buttonchange(Button b)
    {
        if (b.Content.ToString() == "")
            if (x == true)
            {
                x = false;
                b.Content = "X";
            }
            else
            {
                x = true;
                b.Content = "O";
            }
        if(b.Name!=null)
            avail.Remove(b.Name);
    }

Any ideas?
thank you!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T03:30:27+00:00Added an answer on June 12, 2026 at 3:30 am

    Make a list of button references instead:

    public List<Button> avail = new List<Button>() { button1, button2, button3, button4, button5, button6, button7, button8, button9 };
    
    public Button Ran()
    {
        Random b1 = new Random();
        int index = b1.Next(avail.Count); 
        if (index > 0) {
            return avail[index];
        } else {
            return null;
        }
    }
    
    public void buttonchange(Button b)
    {
        if(b != null) {
            if (b.Content.ToString() == "") {
                b.Content = x ? "X" : "O";
                x = !x;
            }
            avail.Remove(b);
        }
    }
    

    Not sure why the button with index zero isn’t to be used, though…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was trying to make Tic Tac Toe game for the monthly tutorial and
I have read a book and am trying to make a game of tic-tac-toe
Basically i'm trying to make a tic-tac-toe game using C++ and SFML2 API. I
I am trying to make a really simple Tic-Tac-Toe game. I have stored values
I am trying to make tic tac toe using websockets running on glassfish. I've
I am trying to make a tic-tac-toe program, and want to know how I
I am trying to make a Tic Tac Toe program with java swing, and
I'm writing a game that's a variant of Gomoku . Basically a tic tac
Trying to make a make generic select control that I can dynamically add elements
I'm writing a Tic Tac Toe Game and I would like to know how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.