I want to know how to set a wpf button background to transparent.
thank you
<Button Background="Transparent"/>
I need to create a rounded corner glossy button in WPF. Can anyone please explain me what steps are needed?
The easiest way is to implement ButtonClick event handler and invoke Window.Close() method, but how doing this through a Command binding?
I tried this solution: <Button> <StackPanel> <Image Source="Pictures/img.jpg" /> <TextBlock>Blablabla</TextBlock> </StackPanel> </Button> But I can see the image only in the project …