I have a set of buttons inside the stack panel. I want them all to have a background image. How can I do this with styles? since I donβt want to manually set the background image for each button.
Here is the code snippet:
<StackPanel Orientation="Horizontal" Height="100px" VerticalAlignment="Top"> <StackPanel.Resources> <Style TargetType="Button"> <Setter Property="Margin" Value="2,4" /> </Style> </StackPanel.Resources> <Button Width="127px" Height="79px" VerticalAlignment="Bottom"> <Button.Background> <ImageBrush ImageSource="images/Tab.png" /> </Button.Background> </Button> <Button>A</Button> <Button>R</Button> <Button>S</Button> </StackPanel>
Thanks.
resources styles wpf background-image
aviv
source share