picturebox with Click event

  • Thread starter Thread starter carmen
  • Start date Start date
C

carmen

I need to add a picture box with the Click event to an application using the
..NET Compact Framework.
I've seen some examples that redefine a control class but they are so
dificult for me, as I'm new with C#
Could you help me?
 
Hi Carmen,

Click event for a picture box is available in .NET CF.
Though it's not mentioned in MSDN, but if you manually try to hook the click
event with an event handler, you can easily do that. The click event is
available in the Intellisense.

HTH,
Asheesh
 
Thank you !
I'm going to try.

Asheesh said:
Hi Carmen,

Click event for a picture box is available in .NET CF.
Though it's not mentioned in MSDN, but if you manually try to hook the click
event with an event handler, you can easily do that. The click event is
available in the Intellisense.

HTH,
Asheesh
 
I tried and runs fine. Thank you !!

Asheesh said:
Hi Carmen,

Click event for a picture box is available in .NET CF.
Though it's not mentioned in MSDN, but if you manually try to hook the click
event with an event handler, you can easily do that. The click event is
available in the Intellisense.

HTH,
Asheesh
 
Back
Top