My aim is to draw some lines on top of the image. As far as I understood how imageview works,
it should be done directly on the DrawImage method using de dc instance (unless we do it a instance attribute). I plugged the following line in the code:
dc.DrawLine(512*xscale,0*yscale, 512*xscale, 1024*yscale)
But it doesn't seem to be a line on the center in my 1024x1024 image.
The image it also not shown completely on the frame even if the application is maximaized.
My aim is to draw some lines on top of the image. As far as I understood how imageview works,
it should be done directly on the
DrawImagemethod using dedcinstance (unless we do it a instance attribute). I plugged the following line in the code:But it doesn't seem to be a line on the center in my 1024x1024 image.
The image it also not shown completely on the frame even if the application is maximaized.