M
Mart
Hi,
I want to color a pixel.
This doesn't work:
e.Graphics.DrawLine(new Pen(color), column, row, column, row);
This does work, but it draws 2 pixels wide instead of 1:
e.Graphics.DrawLine(new Pen(color), column, row, column+1, row);
How can I color 1 pixel?
I am working with the compact framework.
Thanks in advance
Mart
I want to color a pixel.
This doesn't work:
e.Graphics.DrawLine(new Pen(color), column, row, column, row);
This does work, but it draws 2 pixels wide instead of 1:
e.Graphics.DrawLine(new Pen(color), column, row, column+1, row);
How can I color 1 pixel?
I am working with the compact framework.
Thanks in advance
Mart