I have a user control with several labels and other controls that only display information – it is like a “Info Tile” . I want the user to be able to click that “Tile” so that I can go to another form with other controls that they can interact with -like edit some settings, etc. How can I do that without coding a click event for everything on the user control ? I read online about using a transparent panel over the top of all the controls – and code 1 click event there. However, I can’t see a way to make the panel transparent so that it can sit over the top of the entire user control.
Any way to do this without a bunch of code to register all those click events ?
Use the Anonymous = true property on the controls that you want to make transparent to the pointer.
Please login first to submit.