I've made an array of objects which I all want to preform an action when I'm interacting with a different object. Problem is that this overlaps the original object, yet I still want to see them. Basically what I want is an object which just acts as an invisible boundary, (like if I was to have a PictureBox
over the top and set the image
to Nothing
and the BackColor
as transparent
(problem is that it appears transparency in windows forms doesn't exist and just makes it the form background colour)). Also setting Visible
to False
makes the object uninteractable.
TL;DR How do I make an object invisible but still intractable. Is there an object with the exact properties I'm describing I don't know about? Or a property to assign to an object. Thanks.