Custom Control Mouse Events



Hello Everyone,

I designed a custom control that is entirely covered by a picture box.
I then dragged this custom control onto a windows form application
(called main) and I need to handle mouse events in my main
application. Specifically, when a user double clicks on my custom
control I need to draw something on another picture box located in my
main application.

I'm going to attempt to draw the scenario because I think it will
clarify my question so please bare with me!

-------------------------------------------------------------------------------------------
| Main
Form
|
--------------------------------------------------------------------------------------------
|
| -------------------------------
-------------------------------
| | |
| |
| | custom | | picture
box |
| | control | | on main
form |
| | |
| |
| | |
| |
| | |
| |
| | |
| |
| -------------------------------
-------------------------------
|
|
----------------------------------------------------------------------------------------------

What I need to be able to do as I mentioned above is somehow establish
communication between the
custom control and picture box. The problem is that because the custom
control is entirely covered by its OWN
picture box, whenever the user clicks on the control in the main form,
it doesn't do anything (because its picturebox is preventing it from
receiving mouse clicks.

Any ideas on how to get around this problem? I'd appreciate the help!

One solution might be to draw to the main picture box from the custom
control itself. Is that even possible? Can paint to the main picture
box through my custom control code?

Thanks for any help!

~ Maryam

.



Relevant Pages

  • Custom Control Mouse Events
    ... I designed a custom control that is entirely covered by a picture box. ... I then dragged this custom control onto a windows form application ... I'm going to attempt to draw the scenario because I think it will ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Custom Control Mouse Events
    ... I designed a custom control that is entirely covered by a picture box. ... I then dragged this custom control onto a windows form application ... One solution might be to draw to the main picture box from the custom ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Custom Control Mouse Events
    ... I designed a custom control that is entirely covered by a picture box. ... I then dragged this custom control onto a windows form application ... One solution might be to draw to the main picture box from the custom ...
    (microsoft.public.dotnet.framework.windowsforms.controls)
  • RE: Button with image in 2005?
    ... You would need to derive a custom control. ... Compact Framework QuickStarts in the Custom Controls section: ... Picture. ... ..NET Compact Framework User Education ...
    (microsoft.public.dotnet.framework.compactframework)
  • Re: Custom ScaleMode setting problem
    ... It sets up a picture box in the way that you require. ... In this way you can draw the finished graph at any physical location and size you require, opaquely or transparently, and you can draw it to the printer in a way that takes full advantage of the printer's high resolution. ... Private pOffsetX As Single, pOffsetY As Single ...
    (microsoft.public.vb.general.discussion)

Loading