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
  • 32,463
  • 51
  • 192
  • 400

1 Answers1

4

Try this:

<Button BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
  <Image Source="Your Image"/>
</Button>
Salah Akbari
  • 39,330
  • 10
  • 79
  • 109