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
Post a Comment