J
James Gockel
Making a very simple application, I used to program in VB, and C# is
similar, but very different in its own ways.
Trying to figure out how to call
Private void DrawGameboard()
{
/: Draws rectangles here :/
}
When the form has loaded, so it'll draw the rectangles..
I try to impliment somthing like
private void Form1_Load(object sender, EventArgs e)
{
drawgameboard();
}
Basically I'm learning, and I'm a little confused. I'm trying to write a
tictactoe game from scratch.
I can't even draw the gameboard...
I've tried looking it up, but I can't find anything about how form_load
works, or how I can create other "handlers"?
Trying to use VC# Express.
Many Thanks...
-James
similar, but very different in its own ways.
Trying to figure out how to call
Private void DrawGameboard()
{
/: Draws rectangles here :/
}
When the form has loaded, so it'll draw the rectangles..
I try to impliment somthing like
private void Form1_Load(object sender, EventArgs e)
{
drawgameboard();
}
Basically I'm learning, and I'm a little confused. I'm trying to write a
tictactoe game from scratch.
I can't even draw the gameboard...
I've tried looking it up, but I can't find anything about how form_load
works, or how I can create other "handlers"?
Trying to use VC# Express.
Many Thanks...
-James