# How can I make to a transparency button?

**URL:** https://forums.fusetools.com/t/how-can-i-make-to-a-transparency-button/2080
**Category:** How-to Discussions
**Created:** [December 9, 2015, 7:13am UTC](https://forums.fusetools.com/t/how-can-i-make-to-a-transparency-button/2080 "2015-12-09T07:13:40Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![jjangikk](https://avatars.discourse-cdn.com/v4/letter/j/43a26b/32.png) [@jjangikk](https://forums.fusetools.com/u/jjangikk)
#### Post date: [December 9, 2015, 7:13am UTC](https://forums.fusetools.com/t/how-can-i-make-to-a-transparency-button/2080/1 "2015-12-09T07:13:40Z")

</div>

I want to a transparency button, so I set th retangle opacity is 0, then it is disappear response.

Is there a solution ?

---

<div class="post-metadata">

### Author: ![edA-qa\_mort-ora-y](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/eda-qa_mort-ora-y/32/124_2.png) [@edA-qa\_mort-ora-y](https://forums.fusetools.com/u/edA-qa_mort-ora-y)
#### Post date: [December 9, 2015, 7:19am UTC](https://forums.fusetools.com/t/how-can-i-make-to-a-transparency-button/2080/2 "2015-12-09T07:19:36Z")

</div>

Oops, this is an error that I thought I fixed (invisible things should still be clickable).

But if you just want an invisible clickable area you can modify the `HitTestMode` of a panel.

```auto
<Panel HitTestMode="LocalBounds">
    <Clicked>
       ....
    </Clicked>
</Panel>

```

The `LocalBounds` says the entire area of this panel is hittable, thus it can be `Clicked`. You’ll of course need to give a size to the panel, either stretched to the parent (the default), or with an explicit `Width` and `Height`.

---

<div class="post-metadata">

### Author: ![jjangikk](https://avatars.discourse-cdn.com/v4/letter/j/43a26b/32.png) [@jjangikk](https://forums.fusetools.com/u/jjangikk)
#### Post date: [December 9, 2015, 7:27am UTC](https://forums.fusetools.com/t/how-can-i-make-to-a-transparency-button/2080/3 "2015-12-09T07:27:04Z")

</div>

Thanks all !

I solved to use fill color, just like that.

 ![file](https://s3.us-east-2.amazonaws.com/fuse-legacy-forum-assets/r22i2t55gLBP-legacy-files-oPyQyywnhkQLrWtd-Kd4aNgdzrFuaagbsJ6N5-V6U.png)
