Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--таких элементов 9 штук, отличаются картинкой, по нажатию Buy надо передавать какой то параметр в команду чтобы точно определять, какой элемент покупается-->
- <ListBox Grid.Row="0" Grid.Column="0" Style="{StaticResource ListBox}">
- <ListBoxItem Width="155" HorizontalContentAlignment="Left" Focusable="False" >
- <Image Source="/images/Glock.png" MinWidth="40" MinHeight="100" Height="100" Width="150"/>
- </ListBoxItem>
- <ListBoxItem Width="80" Focusable="False">
- <Button Content="Buy" Style="{StaticResource BuyButton}" Command="{Binding BuyCommand}" CommandParameter="{Binding Weapon}" Margin="0,1" Width="44" Tag="Glock"/>
- </ListBoxItem>
- </ListBox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement