I have a problem. First I'll show you a small code excerpt from my Minesweeper game I'm making.
lbl_grid[mineX, mineY].Text = "*";
Now, what this does is it sets a mine in my grid to look like a *
.
What I want instead is for lbl_grid[mineX, mineY].Text
to be assigned a value of an Icon. Is this possible?
I believe I may have to use something other than text, since icons aren't text.