I've built a DropdownMenu Component for use across my various screens. It has a clickable Hamburger icon that toggles a List Box which serves as the drop down menu. I pass the component a table of Text/Screen pairs and it navigates the user to the desired screen. Works great! But...
Even when the List Box is hidden (Visible = false), I can't click on anything that's under it. I can see the controls that appear when the List Box is hidden, but if I click on them nothing happens. If I click on something that's outside the box of the component (the container for the hamburger and list box) it works fine.
Is there a way to make a control or container pass through if it's not visible?
Sample code available, if that helps.