0

I have a wpf application that looks like as follow: enter image description here

How can I customize button, that should show only the image without button on the background(hide grey rectangle)?

softshipper
  • 29,621
  • 43
  • 158
  • 325

1 Answers1

4

Try this:

<Button BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
  <Image Source="Your Image"/>
</Button>
Salah Akbari
  • 38,126
  • 10
  • 70
  • 102