I have a stacklayout containing many elements and one of them is a button. I want to be able to click this button but I want the other elements in there (and the stacklayout itself) to be IsEnabled
false.
This stacklayout is on top of a map so therefor it is very important that a user can use the maps basic features on top of it.
Right now i have something like this (I have removed all attributes in there to make the code more readable)
<StackLayout IsEnabled = "false" >
<Image />
<Label />
<Button Clicked = "ClickEvent" />
</StackLayout>
So right now i set the stack to IsEnabled
false which makes it not clickable when its on top of the map which is good, but I cannot click my button now.
How do i come around this issue?