Hi all how i can change button background image when button is pressed inside listbox using style for button
</Grid.ColumnDefinitions>
<StackPanel Orientation="Horizontal" Margin="0, 10, 0, 10">
<TextBlock x:Name="item_name" Text="{Binding Name, Mode=OneWay}" FontSize="{StaticResource PhoneFontSizeLarge}" Margin="10, 0, 0, 0" />
</StackPanel>
<Border BorderThickness="0" HorizontalAlignment="Left" VerticalAlignment="Center" BorderBrush="{StaticResource PhoneAccentBrush}" Margin="5, 0, 0, 0">
<Button x:Name="btn_pic1" Style="{StaticResource ImageButton}" Content="Hide" BorderThickness="0" Visibility="Visible" Click="btn_pic1_Click" Width="100" Height="60" Margin="345, 0, 0, 0" >
<Button.Background>
<ImageBrush ImageSource="/Assets/Images/green.circle.png" Stretch="Fill"/>
</Button.Background>
</Button>
</Border>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>