C# 中奖检查并再次播放c tictactoe

C# 中奖检查并再次播放c tictactoe,c#,asp.net,wpf,C#,Asp.net,Wpf,我有三个问题: 1-第一次按下letsPlay按钮时,无论我在何处按下,都会显示图像,但之后效果很好。 2-赢家的方法不起作用。。。它什么也不做。 3-如何重置我的网格背景,因为我找不到任何关于它的结果 好的,下面是xaml代码: <StackPanel> <Grid VerticalAlignment="Top"> <Button x:Name="letsPlay" Content="Let's Start!" Click="letsPla

我有三个问题: 1-第一次按下letsPlay按钮时,无论我在何处按下,都会显示图像,但之后效果很好。 2-赢家的方法不起作用。。。它什么也不做。 3-如何重置我的网格背景,因为我找不到任何关于它的结果

好的,下面是xaml代码:

<StackPanel>
    <Grid VerticalAlignment="Top">
        <Button x:Name="letsPlay" Content="Let's Start!" Click="letsPlay_Click"/>
        <TextBlock x:Name="turnText" 
                   HorizontalAlignment="Left" 
                   Margin="302,10,0,0" 
                   TextWrapping="Wrap" 
                   Text="Turn = X" 
                   VerticalAlignment="Top"
                   Foreground="#FFFB0707" FontSize="20"/>
    </Grid>
    <Grid x:Name="theGrid">
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="*"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>
        <Image x:Name="cell9" Grid.Column="2" Grid.Row="2" Source="Images/Logo.png" Tapped="cell9_Tapped"/>
        <Image x:Name="cell8" Grid.Column="1" Grid.Row="2" Source="Images/Logo.png" Tapped="cell8_Tapped"/>
        <Image x:Name="cell7" Grid.Column="0" Grid.Row="2" Source="Images/Logo.png" Tapped="cell7_Tapped"/>
        <Image x:Name="cell4" Grid.Column="0" Grid.Row="1" Source="Images/Logo.png" Tapped="cell4_Tapped"/>
        <Image x:Name="cell1" Grid.Column="0" Grid.Row="0" Source="Images/Logo.png" Tapped="cell1_Tapped"/>
        <Image x:Name="cell5" Grid.Column="1" Grid.Row="1" Source="Images/Logo.png" Tapped="cell5_Tapped"/>
        <Image x:Name="cell2" Grid.Column="1" Grid.Row="0" Source="Images/Logo.png" Tapped="cell2_Tapped"/>
        <Image x:Name="cell6" Grid.Column="2" Grid.Row="1" Source="Images/Logo.png" Tapped="cell6_Tapped"/>
        <Image x:Name="cell3" Grid.Column="2" Grid.Row="0" Source="Images/Logo.png" Tapped="cell3_Tapped"/>
    </Grid>
</StackPanel>
letsPlay按钮和重置方法:

    private void letsPlay_Click(object sender, RoutedEventArgs e)
        {
            Reset();
        }
void Reset()
        {
            theGrid.Visibility = Windows.UI.Xaml.Visibility.Visible;
            turnText.Visibility = Windows.UI.Xaml.Visibility.Visible;
            turn = true;
            turnText.Text = "Turn = X";
            moveCount1 = 0;
            cell1.Source = nullImage;
            cell1.Tapped += cell1_Tapped;
            cell2.Source = nullImage;
            cell2.Tapped += cell2_Tapped;
            cell3.Source = nullImage;
            cell3.Tapped += cell3_Tapped;
            cell4.Source = nullImage;
            cell4.Tapped += cell4_Tapped;
            cell5.Source = nullImage;
            cell5.Tapped += cell5_Tapped;
            cell6.Source = nullImage;
            cell6.Tapped += cell6_Tapped;
            cell7.Source = nullImage;
            cell7.Tapped += cell7_Tapped;
            cell8.Source = nullImage;
            cell8.Tapped += cell8_Tapped;
            cell9.Source = nullImage;
            cell9.Tapped += cell9_Tapped;
        }
这是一个单元格代码示例:

private void cell9_Tapped(object sender, TappedRoutedEventArgs e)
    {
        if (turn)
        {
            cell9.Source = xImage;
            turn = !turn;
            turnText.Text = "Turn = O";
        }
        else
        {
            cell9.Source = oImage;
            turn = !turn;
            turnText.Text = "Turn = X";
        }
        cell9.Tapped -= cell9_Tapped;
        moveCount1++;
    }
最后,这是赢家的方法:

public void Winner()
    {
        if (
            (cell1.Source == xImage && cell2.Source == cell1.Source && cell3.Source == cell1.Source) ||
            (cell4.Source == xImage && cell5.Source == cell4.Source && cell6.Source == cell4.Source) ||
            (cell7.Source == xImage && cell8.Source == cell7.Source && cell9.Source == cell7.Source) ||
            (cell1.Source == xImage && cell5.Source == cell1.Source && cell9.Source == cell1.Source) ||
            (cell3.Source == xImage && cell5.Source == cell3.Source && cell7.Source == cell3.Source) ||
            (cell1.Source == xImage && cell4.Source == cell1.Source && cell7.Source == cell1.Source) ||
            (cell2.Source == xImage && cell5.Source == cell2.Source && cell8.Source == cell2.Source) ||
            (cell3.Source == xImage && cell6.Source == cell3.Source && cell9.Source == cell3.Source)
            )
        {
            ImageBrush xWins1 = new ImageBrush();
            xWins1.ImageSource = xImage;
            theGrid.Background = xWins1;
        }
        else if (
            (cell1.Source == oImage && cell2.Source == cell1.Source && cell3.Source == cell1.Source) ||
            (cell4.Source == oImage && cell5.Source == cell4.Source && cell6.Source == cell4.Source) ||
            (cell7.Source == oImage && cell8.Source == cell7.Source && cell9.Source == cell7.Source) ||
            (cell1.Source == oImage && cell5.Source == cell1.Source && cell9.Source == cell1.Source) ||
            (cell3.Source == oImage && cell5.Source == cell3.Source && cell7.Source == cell3.Source) ||
            (cell1.Source == oImage && cell4.Source == cell1.Source && cell7.Source == cell1.Source) ||
            (cell2.Source == oImage && cell5.Source == cell2.Source && cell8.Source == cell2.Source) ||
            (cell3.Source == oImage && cell6.Source == cell3.Source && cell9.Source == cell3.Source)
            )
        {
            ImageBrush oWins1 = new ImageBrush();
            oWins1.ImageSource = oImage;
            theGrid.Background = oWins1;
        }
        else if (moveCount1 == 9)
        {
            ImageBrush tie1 = new ImageBrush();
            tie1.ImageSource = nullImage;
            theGrid.Background = tie1;
        }
    }

我将非常感谢你们提供的任何帮助,如果您需要更多详细信息,请提前询问。

首先,如果您将单元格作为数组访问,并实现checkHorizonint列/checkVerticalsint行/checkCrossbool isRightToLeft函数(接收数字的函数),代码将看起来更好,并检查选定的水平/垂直/交叉线是否为赢家,并返回一个值。因为我不确定是否有一种简单的方法可以在wpf中以数组的形式访问gridView,这里有一种方法可以从C中手动插入9个单元格

你的第一个问题是关于一个有很多原因可能会发生这个问题-我记得当我用来为ASP.NET编程时,这类问题与页面加载和ASP页面生命周期有关。看一看,让我知道它是否解决了你的问题

你的第二个问题非常简单。如果我得到正确的结果,你希望你的Winner函数改变图像。我认为问题再次与对象生命周期有关-问题是对象已准备好加载到页面,因此为了查看更改,您必须在更改后刷新页面

还有第三个问题,可能是前两个问题的解决方案。如何刷新您询问的页面?我借用了ASP的语法,因为我记得ASP的上下文。解决方案是将用户重定向到您的页面,然后网格将首先重新加载自身。您可以这样做:

const string pageName = "insert your page name here";
/*Insert some other code here*/
public static redirect(string directionName)
{
    Response.Redirect(directionName+".aspx");
}
/* Insert some more code here */
每当gridview中发生变化时,您可以简单地使用redirectpageName


祝你好运,如果还有其他问题你无法解决,请告诉我:

我有点明白你在说什么。。。但我不知道如何使用或实现它们,经验非常少。所以,如果你能帮助我使用社交媒体,如果你是免费的,我是可用的。谢谢你的支持。@Elisaad如果你真的需要,我们可以通过skype聊天;然而,在这里交谈有它的好处,当我们陷入困境时,其他人可以帮助我们,我也不知道一切:但是,如果只是把我在这里写的概念应用到你的项目中,我会帮助你。添加我:saad.elie1当我们结束交谈并解决问题后,我们可以在这里向他们展示。
const string pageName = "insert your page name here";
/*Insert some other code here*/
public static redirect(string directionName)
{
    Response.Redirect(directionName+".aspx");
}
/* Insert some more code here */