for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 3; j++)
{
grf.DrawImage(images2D[j, i], Xpos * 6 * i + 10, Ypos * 6 * j + 10, 50, 50);
}
}
Positioning of images is random and different every time. And this works like a charm. What I want is to be able to click on individual images and change only that (clicked) image. Can this be done the way I imagined it?
I am fairily new to C# and programming, but Im not a total beginner.

New Topic/Question
Reply




MultiQuote




|