How can I draw on the picturebox, I'm using for the DMap editor?
Tried alot now, but still dosn't wants to do it.
This is what I tried:
And yea, I have 0 experience really with such things ><
Tried alot now, but still dosn't wants to do it.
This is what I tried:
Code:
Graphics Grahpic = CreateGraphics();
Pen Pen = new Pen(Color.White, int.Parse(textBox1.Text));
Grahpic.DrawRectangle(Pen, 10, 10, 50, 50);