Button with transparent png image in .Net WPF
I have a WPF Button which should be displayed with a png image which has transparent areas. This is my xaml code, which works for displaying an image: <Button HorizontalAlignment="Left" VerticalAlignment="Top" Panel.ZIndex="2" Background="Transparent" BorderBrush="Transparent"> <Image Width="1cm" Height="1cm" x:Name="LogoImageChangeButton_Image"/> </Button> This is the image. As you can see, it has transparent areas: Unfortunately, wpf seems to… Read More Button with transparent png image in .Net WPF