cannot convert from string to system.windows.forms.string iwin32window
- by Michael Quiles
This is supposed to show the winner in the xWinner form label but I cant figure it out.
xWinnerForm.Show(b1.Text);. I'm new to c# so can you please explain in layman terms thanks.
static public bool CheckWinner(Button[] myControls)
{
bool gameOver = false;
for (int i = 0; i < 8; i++)
{
int a =…