In my project, there are buttons spread across the screen. One strip of panel (pnlScrollLbl) is in the middle of the screen. Scrolling label's parent object is panel. Background of panel is transparent. In earlier B4i version, buttons behind the panel were working properly however since B4i V10 upgrade, buttons behind panel not working.
I have added below code as a solution. Is my method correct? or is there any other good option?
I have added below code as a solution. Is my method correct? or is there any other good option?
Panel Code:
Private pnlScrollLbl as B4XView
pnlScrollLbl.Visible=True
Dim vPnl As View = pnlScrollLbl
vPnl.UserInteractionEnabled = False
pnlScrollLbl.BringToFront