How to use button through border in windows phone 8 -


this code block

<grid>    <button name="button" click="button_click"/>    <border background="black" opacity="0.2"/> </grid> 

i want use button under border layer it's not possible because border has own tap event there way use button click event when border on top of it?

just set ishittestvisible property of border false:

<grid>    <button name="button" click="button_click"/>    <border background="black" opacity="0.2" ishittestvisible="false" /> </grid> 

Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -