I have scenario in which BaseForm needs to be transparent and have panel inside it 1/4 height of the form and should be opaque (which has some buttons and textbox). So I had set the transparent key to BackColor for the BaseFrom and for the panel I set it some other color.
For the rest of the area I need it to be transparent but capture events in the same, so i used another form(EventForm) to do so with opacity set to 1%. But on adding the EventForm as the child to the BaseForm the opacity value is over ridden by the parent form (BaseForm) which is opaque and I see a gray area. I cannot change the opacity of the base form as it also impacts the top panel.
Any suggestions?