Click here to Skip to main content
15,923,222 members

Comments by Khaledc419 (Top 3 by date)

Khaledc419 5-Apr-12 4:17am View    
nothing else really, my brain froze I can not think any more.
Khaledc419 5-Apr-12 4:15am View    
nothing else really, my brain froze I can not think any more.
Khaledc419 21-Feb-12 23:06pm View    
Thank you for your answer, but this code below may help to understand my questions better:


private void OnMouseMoved ( object sender, MouseEventArgs e ) {
//throw new Exception( "The method or operation is not implemented." );
mMouseMoveValid = true;
mMouseX = e.X;
mMouseY = e.Y;
Invalidate();
}

So, what I need to do is modify this code to show also the output value of the image... it is something like for example : (143,213)= 230 which is x = 143, y = 213 and the image value at those coordinates is 230 pixel value.

Thank you for trying