22c13fad6e
- aggiunta gestione GunStock - correzione gestione utensili per calcolo automatico.
16 lines
705 B
XML
16 lines
705 B
XML
<UserControl x:Class="GunStockPanelView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<StackPanel Background="Transparent" Orientation="Horizontal">
|
|
<Button Command="{Binding GunStockCommand}" Style="{StaticResource GridViewPanelButton}"
|
|
Width="70" Content="GUNSTOCK" ContextMenuService.Placement="Bottom">
|
|
<Button.ContextMenu>
|
|
<ContextMenu ItemsSource="{Binding MruGunStockNames}" ItemContainerStyle="{StaticResource MruGunStockItem}">
|
|
</ContextMenu>
|
|
</Button.ContextMenu>
|
|
</Button>
|
|
</StackPanel>
|
|
|
|
</UserControl>
|