2010-05-21 164 views
1

我在想什么我不能通过这种简单的tic tac脚趾游戏来弄清楚它。无法找到类型或命名空间名称'Button'(您是否缺少using指令或程序集引用?)

另外我怎样才能合并一个水平滚动条列表框来选择播放器?玩家1 =(x)或玩家2 =(O)

在此先感谢!

主要形式 - xGameForm

using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Windows.Forms; 

namespace MyGame 
{ 
    public partial class xGameForm : Form 
    { 

     public Button xGameButton9; 
     public Button xGameButton8; 
     public Button xGameButton7; 
     public Button xGameButton6; 
     public Button xGameButton5; 
     public Button xGameButton4; 
     public Button xGameButton3; 
     public Button xGameButton2; 
     public Button xGameButton1; 



     public Button[] _buttonArray; 
     public bool isX; 
     public bool isGameOver; 

     Button tempButton = (Button)sender; 

     public xGameForm() 

     { 
      InitializeComponent(); 
     } 

     public void xGameForm_Load(object sender, EventArgs e) 
     { 
      _buttonArray = new Button[9] { xGameButton1, xGameButton2, xGameButton3, xGameButton4, xGameButton5, xGameButton6, xGameButton7, xGameButton8, xGameButton9 }; 

      for (int i = 0; i < 9; i++) 

      this._buttonArray[i].Click += new System.EventHandler(this.ClickHandler); 

      InitTicTacToe(); 

     } 

     public void InitTicTacToe() 
     { 
      for (int i = 0; i < 9; i++) 
      { 
       _buttonArray[i].Text = ""; 
       _buttonArray[i].ForeColor = Color.Black; 
       _buttonArray[i].BackColor = Color.LightGray; 
       _buttonArray[i].Font = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); 
      } 
      this.isX = true; 
      this.isGameOver = false; 
     } 

     public void ClickHandler(object sender, System.EventArgs e) 
     { 
      Button tempButton = (Button)sender; 
      if(this.isGameOver) 
      { 
       MessageBox.Show("press reset to start a new game!","Game End",MessageBoxButtons.OK); 
       return;   
      } 
      if(tempButton.Text != "") 
      { 
       return; 
      } 
      if(isX)  
       tempButton.Text = "X"; 
      else 
       tempButton.Text = "O"; 
      isX = !isX; 
      this.isGameOver = Result1.CheckWinner(_buttonArray); 
     } 

     public void xGameResetButton_Click(object sender, EventArgs e) 
     { 
      InitTicTacToe();  
     } 
} 
    } 

类结果1

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 

namespace MyGame 
{ 
    public class Result1 
    { 


     static private int[,] Winners = new int[,] 
        { 
         {0,1,2}, 
         {3,4,5}, 
         {6,7,8}, 
         {0,3,6}, 
         {1,4,7}, 
         {2,5,8}, 
         {0,4,8}, 
         {2,4,6} 
        }; 
     static public bool CheckWinner(Button[] myControls) 
     { 
      bool gameOver = false; 
      for (int i = 0; i < 8; i++) 
      { 
       int a = Winners[i, 0], b = Winners[i, 1], c = Winners[i, 2]; 
       Button b1 = myControls[a], b2 = myControls[b], b3 = myControls[c]; 
       if (b1.Text == "" || b2.Text == "" || b3.Text == "") 
        continue; 
       if (b1.Text == b2.Text && b2.Text == b3.Text) 
       { 
        b1.BackColor = b2.BackColor = b3.BackColor = Color.LightCoral; 
        b1.Font = b2.Font = b3.Font = new System.Drawing.Font("Microsoft Sans Serif", 32F, System.Drawing.FontStyle.Italic & System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); 
        gameOver = true; 
        MessageBox.Show(b1.Text + " .... Wins the game!", "Game End", MessageBoxButtons.OK); 
        break; 
       } 
      } 
      return gameOver; 
     } 
    } 
} 

回答

1

Button处于System.Windows.Forms命名空间的类。
除非您导入命名空间,编译器将不知道您想要哪个类。

您需要通过添加using System.Windows.Forms;到类的顶部导入命名空间..

+0

谢谢,工作!还有一个问题,我怎样才能添加一个水平滚动条“xGameScrollBar”的列表框“xGameListBox”来选择播放器? Player1 =(x)或Player2 =(O) – 2010-05-21 15:55:01

+0

我不确定你的意思。 – SLaks 2010-05-21 15:58:32

0

您需要添加一个using指令使用System.Windows.Forms的与您的文件RESULT1类,或明确引用System.Windows.Forms.Button。否则complire不知道按钮是什么。

相关问题